/* Toast Notification Styles */

.toast-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
    max-width: 350px;
    word-wrap: break-word;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-notification.fade-out {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.toast-success {
    background-color: #10b981;
    color: white;
    border-left: 4px solid #059669;
}

.toast-error {
    background-color: #ef4444;
    color: white;
    border-left: 4px solid #dc2626;
}

.toast-warning {
    background-color: #f59e0b;
    color: white;
    border-left: 4px solid #d97706;
}

.toast-info {
    background-color: #3b82f6;
    color: white;
    border-left: 4px solid #2563eb;
}

.toast-notification i {
    font-size: 16px;
    flex-shrink: 0;
}

.dark .toast-notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
