/* ==========================================================================
   ARKENSTONE REGISTRY — GLOBE TAB
   The embedded globe fills the content area; fullscreen is handled natively.
   ========================================================================== */
#view-globe {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.globe-wrap {
    position: relative;
    flex: 1 1 auto;
    min-height: 480px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--color-line, rgba(255, 255, 255, 0.08));
}

.globe-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* When the wrap is the native fullscreen element, fill the whole screen flush */
.globe-wrap:fullscreen,
.globe-wrap:-webkit-full-screen {
    border-radius: 0;
    border: 0;
    min-height: 0;
}
