/* Estilos generales del sitio SanctiApp */


.navbar-custom { background-color: #003399; }
        .search-bar-custom { background-color: #FFD700; padding: 30px 0; }
        .btn-search { background-color: #003399; color: white; font-weight: bold; }
        .footer-custom { background-color: #002266; color: #ffffff; }
        .footer-custom a { color: #d1d5db; text-decoration: none; }
        .footer-bottom { background-color: #001133; font-size: 0.85rem; }


.iglesia-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0; /* Un gris más suave */
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: transform 0.2s;
}
.iglesia-card:hover {
    transform: scale(1.01);
}

.iglesia-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.iglesia-info {
    flex-grow: 1;
}

.iglesia-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.iglesia-acciones {
    display: flex;
    gap: 10px;
}

.btn-icon {
    background: #f0f0f0;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-icon:hover {
    background: #e0e0e0;
}