.toast-container {
    position: fixed;
    top: 80px;
    right: 28px;
    z-index: 2000;
}

.toast {
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
}

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

.toast-success {
    border-color: #10b981;
}

.toast-error {
    border-color: #ef4444;
}

.toast-warning {
    border-color: #f59e0b;
}

.toast i {
    font-size: 18px;
}

.toast-success i {
    color: #10b981;
}

.toast-error i {
    color: #ef4444;
}

.toast-warning i {
    color: #f59e0b;
}

.toast-message {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}
