/* Toast Notification System */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.toast-notification.removing {
    transform: translateX(400px);
}

.toast-notification.success {
    background: #10b981;
}

.toast-notification.error {
    background: #ef4444;
}

.toast-notification.warning {
    background: #f59e0b;
}

.toast-notification.info {
    background: #3b82f6;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        transform: translateY(200px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
    
    .toast-notification.removing {
        transform: translateY(200px);
    }
}