/* ── overlay ──────────────────────────────────────────── */
.loading {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-hidden {
    display: none;
}

.loading::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* ── inner content ────────────────────────────────────── */
.loading-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ── spinner keyframe ─────────────────────────────────── */
@keyframes _ld-spin {
    to { transform: rotate(360deg); }
}

/* ── message text ─────────────────────────────────────── */
#loading-body {
    margin: 0;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    transition: opacity 0.25s ease;
    min-height: 20px;
    text-align: center;
}

@media (max-width: 500px) {
    #loading-body {
        font-size: 13px;
        padding: 0 1rem;
    }
}