/* Estilos para o aviso de expiração de sessão */
.session-warning {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.session-warning-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.session-warning-content h3 {
    color: #D4AF37;
    margin-top: 0;
    margin-bottom: 15px;
}

.session-warning-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.session-warning-buttons button {
    min-width: 100px;
}

@media (max-width: 480px) {
    .session-warning-content {
        max-width: 90%;
        padding: 20px;
    }
    
    .session-warning-buttons {
        flex-direction: column;
    }
    
    .session-warning-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}
