@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Metropolis', sans-serif;
    font-weight: 400;
    margin: 0;
    color: #37383e;
    background: linear-gradient(212.88deg, rgba(129, 137, 216, 0.10) 29.53%, rgba(150, 182, 117, 0.10) 100%) !important;
    min-height: 100vh;
}

/* Session Logout Modal */
.session-logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.session-logout-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.session-logout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.session-logout-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.session-logout-modal.active .session-logout-content {
    transform: scale(1);
}

.session-logout-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.session-logout-icon svg {
    width: 64px;
    height: 64px;
}

.session-logout-title {
    font-size: 24px;
    font-weight: 600;
    color: #37383E;
    margin: 0 0 16px 0;
    font-family: 'Metropolis', sans-serif;
}

.session-logout-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 32px 0;
    font-family: 'Metropolis', sans-serif;
}

.session-logout-button {
    background: #8189D8;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Metropolis', sans-serif;
    min-width: 200px;
}

.session-logout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 137, 216, 0.4);
}

.session-logout-button:active {
    transform: translateY(0);
}

@media screen and (max-width: 576px) {
    .session-logout-content {
        padding: 32px 24px;
        max-width: 90%;
    }

    .session-logout-title {
        font-size: 20px;
    }

    .session-logout-message {
        font-size: 14px;
    }

    .session-logout-button {
        padding: 12px 32px;
        font-size: 14px;
        min-width: 180px;
    }

    .session-logout-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* Notificacion Flotante */
.notificacion-correo-flotante {
    position: fixed;
    top: 80px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 380px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    font-family: 'Metropolis', sans-serif;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notificacion-correo-flotante.ocultando {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notificacion-correo-icono {
    flex-shrink: 0;
    width: 22px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.notificacion-correo-icono img {
    width: 22px;
    height: 17px;
    display: block;
}

.notificacion-correo-contenido {
    flex: 1;
}

.notificacion-correo-texto {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    color: #37383E;
    font-weight: 500;
}

.notificacion-correo-link {
    color: #8189D8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.notificacion-correo-link:hover {
    color: #6b73b8;
    text-decoration: underline;
}

@media screen and (max-width: 576px) {
    .notificacion-correo-flotante {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 14px 16px;
    }

    .notificacion-correo-texto {
        font-size: 16px;
        line-height: 20px;
    }
}