body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.map-container {
    height: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#map {
    height: 100%;
    min-height: 600px;
    width: 100%;
}

.church-list {
    max-height: 300px;
    overflow-y: auto;
}

.church-item {
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.church-item:hover {
    background-color: #f0f0f0;
}

.marker-info {
    padding: 5px;
}

.marker-info h4 {
    margin-top: 0;
    color: #0d6efd;
}

.marker-info p {
    margin-bottom: 5px;
}

.hidden {
    display: none;
}

.card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-title {
    color: #0d6efd;
    font-weight: 600;
}

.cluster-marker {
    color: #fff;
    background-color: #0d6efd;
    border-radius: 50%;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Estilos para botones de acción */
.btn-sm {
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Estilos para notificaciones */
.alert {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mejorar el contenedor de botones */
.mt-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Indicador de carga mejorado */
#loadingIndicator {
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

/* Estilos para filtros de zona */
.filter-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.zone-filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#quickZoneSearch {
    transition: border-color 0.3s ease;
}

#quickZoneSearch:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.results-counter {
    font-size: 0.9em;
    color: #6c757d;
    font-style: italic;
    padding: 8px 12px;
    background-color: #e9ecef;
    border-radius: 4px;
    text-align: center;
}

.filter-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

/* Animación para el botón de limpiar filtros */
#clearFiltersButton {
    transition: all 0.3s ease;
}

#clearFiltersButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mejora visual para el dropdown de zonas */
#zoneFilter {
    transition: all 0.3s ease;
}

#zoneFilter:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}
