.toast-root {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #1e2330;
    color: #e5e7eb;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #2a3040;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 1.05rem;
}

.toast-success {
    border-left: 3px solid #22c55e;
}

.toast-success i {
    color: #22c55e;
}

.toast-error {
    border-left: 3px solid #ef4444;
}

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

.toast-info {
    border-left: 3px solid #3b82f6;
}

.toast-info i {
    color: #3b82f6;
}

.toast-warning {
    border-left: 3px solid #f59e0b;
}

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

@media (max-width: 480px) {
    .toast-root {
        left: 12px;
        right: 12px;
        top: 12px;
    }

    .toast {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
}
