/* Modal Wait Spinner Overlay */
.vz-modal-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(36, 41, 47, 0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vz-modal-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 32px 40px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.vz-modal-spinner-circle {
    width: 48px;
    height: 48px;
    border: 6px solid #e0e0e0;
    border-top: 6px solid #24292f;
    border-radius: 50%;
    animation: vz-modal-spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes vz-modal-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vz-modal-spinner-text {
    font-size: 70%;
    color: #24292f;
    margin-top: 4px;
}
