#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.toast {
    background: var(--bg-box, #282835);
    color: var(--text-main, #fff);
    padding: 12px 20px;
    border-radius: 4px;
    border-left: 4px solid var(--accent, #4fc3f7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
}

.toast.error {
    border-left-color: var(--danger, #ff5252);
}

.toast.success {
    border-left-color: var(--success, #00e676);
}

.toast.fadeOut {
    animation: slideOut 0.3s ease-in forwards;
}

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

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