.menu-notificaciones {
    padding: 0;
    overflow: visible; /* evita el doble scrollbar en MudMenu */
}

.fade-in {
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

    .fade-in:hover {
        opacity: 1;
        transform: scale(1.05);
    }

.fw-600 {
    font-weight: 600;
}




.login-background {
    min-height: 100vh;
    background-image: url('/images/fondo-cmh.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    animation: fadeIn 0.6s ease-in forwards;
}

.login-content {
    color: white;
}

.input-field input {
    color: white;
}

.input-field .mud-input {
    background-color: rgba(255, 255, 255, 0.08);
}

.input-field .mud-input-label {
    color: rgba(255, 255, 255, 0.8);
}

.login-button {
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .mud-table {
        font-size: 0.875rem;
    }

    .mud-button {
        width: 100%;
    }
}