/* ============================================================
   teample loading overlay
   ============================================================ */

#tp-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 999998;          /* bottom_menu(999999999) 바로 아래 */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

#tp-loading-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.tp-loading-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
}

.tp-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #DCFCE7;
    border-top-color: #16A34A;
    border-radius: 50%;
    animation: tp-spin 0.65s linear infinite;
}

@keyframes tp-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .tp-loading-spinner {
        animation: none;
        border-top-color: #16A34A;
    }
}
