#domainSwitchOverlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
}

#domainSwitchOverlay.is-active {
    display: flex;
}

#domainSwitchOverlay .domain-switch-overlay__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 220px;
    padding: 24px 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    color: #4c4c4c;
    text-align: center;
}

#domainSwitchOverlay .domain-switch-overlay__spinner {
    width: 38px;
    height: 38px;
    border: 4px solid rgba(249, 153, 51, 0.2);
    border-top-color: #f93;
    border-radius: 50%;
    animation: domain-switch-spin 0.8s linear infinite;
}

body.domain-switch-active {
    overflow: hidden;
}

@keyframes domain-switch-spin {
    to {
        transform: rotate(360deg);
    }
}
