/**
 * WM School Photos – Shared styles used by multiple modules.
 *
 * Includes: loading overlay, spinner, scroll lock.
 * Enqueued by both family-search and order-forms.
 */

/* ── Full-page loading overlay ────────────────────────────────────────────── */
.sowc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sowc-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2c8ba9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: wm-spinner-spin 1s linear infinite;
}

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

body.wm-noscroll {
    overflow: hidden;
}
