.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #4CAF50;
    border-left: 4px solid #388E3C;
}

.notification.error {
    background-color: #f44336;
    border-left: 4px solid #d32f2f;
}

.notification .icon {
    font-size: 20px;
}

.notification .message {
    flex: 1;
}

.notification .close {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification .close:hover {
    opacity: 1;
}

/* Animação de entrada */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Animação de saída */
@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
} 