.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}
.custom-toast {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease-out;
    min-width: 280px;
}
.custom-toast.success {
    border-left: 4px solid #34C759;
}
.custom-toast.error {
    border-left: 4px solid #E74C3C;
}
.custom-toast.loading {
    border-left: 4px solid #1890FF;
}
.custom-toast .toast-icon {
    font-size: 1.2rem;
    color: #34C759;
}
.custom-toast.error .toast-icon {
    color: #E74C3C;
}
.custom-toast.loading .toast-icon {
    color: #1890FF;
    width: 1.2rem;
    text-align: center;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}