/* --- ESTILOS GENERALES --- */
body {
    background-color: #f4f6f9; /* Fondo gris-azulado muy sutil para que el blanco resalte */
}


/* --- ESTILOS TIPO "BOTÓN FLOTANTE" PARA TABS --- */
.nav-custom-tabs {
    background-color: #e9ecef; /* Fondo ligeramente más oscuro para contrastar con la sombra */
    padding: 10px;
    border-radius: 12px;
    border: none; 
    display: flex;
    align-items: center;
    flex-wrap: wrap; 
    margin-bottom: 20px;
}

.nav-custom-tabs .nav-link {
    color: #6c757d;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: none;
    border: 1px solid transparent;
    margin: 5px; 
    border-radius: 30px;
}

/* Enlace ACTIVO (Sombra aumentada) */
.nav-custom-tabs .nav-link.active {
    background-color: #ffffff !important; 
    color: #212529 !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 30px !important; 
    /* SOMBRA AUMENTADA: más expandida y ligeramente más oscura */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22) !important; 
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.nav-custom-tabs .nav-link:hover:not(.active) {
    color: #007bff;
    background-color: rgba(255, 255, 255, 0.5); /* Leve brillo al pasar el ratón */
}