  :root {
            --verde-udocba: #99C823;
            --azul-udocba: #0054a6;
        }

        body {
            background-color: #f4f7f6;
            font-family: 'Segoe UI', sans-serif;
        }

        .navbar-admin {
            background: var(--azul-udocba);
            color: white;
            padding: 1rem;
        }

        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-save {
            background-color: var(--verde-udocba);
            border: none;
            color: white;
            font-weight: bold;
        }

        .btn-save:hover {
            background-color: #82ab1e;
            color: white;
        }

        .img-preview {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
            background: #eee;
        }

        .status-loading {
            display: none;
        }



        .beneficio-card {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        .beneficio-card:hover { transform: translateY(-5px); }
        .card-img-top {
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid #99C823;
        }
        .search-container {
            background: #f8f9fa;
            padding: 30px 0;
            margin-bottom: 40px;
            border-radius: 0 0 30px 30px;
        }

        /* Ajustes para las Tarjetas de Beneficios */
.beneficio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.beneficio-card img {
    height: 200px;
    object-fit: cover; /* Evita que la imagen se estire */
}

/* Ajustes para el Modal en Celulares */
@media (max-width: 576px) {
    #modalImagen {
        max-height: 50vh !important; /* Imagen más pequeña en móviles para que no tape todo */
    }
    .modal-body h2 {
        font-size: 1.5rem;
    }
}

/* Ajustes para la Tabla de Admin en Celulares */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 14px;
    }
    .btn-sm {
        padding: 0.25rem 0.4rem;
    }
}