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

.toast {
    min-width: 220px;
    max-width: 360px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(30, 0, 0, 0.92);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ffe5e5;
    font-size: 13px;
    box-shadow: 0 0 12px rgba(180, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toast-success { border-color: rgba(80, 220, 140, 0.6); color: #dfffe8; }
.toast-error { border-color: rgba(255, 90, 90, 0.7); color: #ffd6d6; }
.toast-warn { border-color: rgba(255, 200, 80, 0.7); color: #ffe6b0; }
.toast-info { border-color: rgba(120, 170, 255, 0.6); color: #e1ecff; }

.toast .toast-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.toast.fade-out {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
