.global-toast {
    position: fixed;
    left: 0;
    right: 0;
    top: 12px;
    z-index: 20000; /* выше модалки (у тебя 10000) */
    display: none;
    justify-content: center;
    pointer-events: none;
}

.global-toast[aria-hidden="false"] {
    display: flex;
}

.global-toast__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 20px 16px;
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.70);
    color: var(--white--white100, #FFFFFF);
    font-size: 16px;
    font-weight: 500;
    width: calc(100% - 30px);
    max-width: 340px;
}

.global-toast__divider {
    width: 1px;
    height: 100%;
    background-color: var(--white--white100, #FFFFFF);
}

.global-toast__action {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
}

.global-toast__action:active {
    opacity: 0.7;
}
