/* 문의 성공 → contact_complete 이동 중 전체화면 스피너 */
.lb-contact-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.72);
    pointer-events: all;
}

.lb-contact-nav-overlay__spinner {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 3px solid #E5E8EB;
    border-top-color: #41b6e6;
    border-radius: 50%;
    animation: lb-contact-nav-spin 0.8s linear infinite;
}

.lb-contact-nav-overlay__label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #4B5563;
    white-space: nowrap;
    word-break: keep-all;
}

@keyframes lb-contact-nav-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lb-contact-nav-overlay__spinner {
        animation: none;
    }
}
