#toast-root {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1400;
}

.toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.toast--success {
    border-color: rgba(31, 157, 85, 0.45);
}

.toast--error {
    border-color: rgba(215, 38, 61, 0.55);
}

.toast__close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
}
