/* Estilos personalizados para la aplicación de mapas */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
}

.map-container {
    height: 500px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-group .btn {
    margin-right: 5px;
}

.alert {
    margin-bottom: 20px;
}

.nav-tabs {
    margin-bottom: 15px;
}

.tab-content {
    padding: 15px 0;
}

.folium-map {
    height: 95% !important;
}

.break {
  flex-basis: 100%;
  height: 0;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-right: 0;
        margin-bottom: 5px;
    }
}
