.customer-logout-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    box-sizing: border-box;
    background: rgba(15, 23, 42, .54);
    color: #fff;
    text-align: center;
    overflow: auto;
    font-family: inherit;
}
.customer-logout-overlay p { margin: 0; max-width: 360px; font-size: 16px; line-height: 1.6; }
.customer-logout-spinner {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 3px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-right-color: #fff;
    border-radius: 50%;
    animation: customer-logout-spin .8s linear infinite;
}
.customer-logout-overlay button { min-height: 44px; padding: 10px 18px; border: 1px solid #fff; border-radius: 6px; background: transparent; color: #fff; font: inherit; cursor: pointer; }
.customer-logout-overlay button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.customer-logout-overlay [hidden] { display: none !important; }
@keyframes customer-logout-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .customer-logout-spinner { animation: none; } }
