html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Force hide MindAR default UI Scanning overlay image elements */
.mindar-ui-overlay, .mindar-ui-scanning, div[class*="mindar-ui"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

#canvas-wrap {
    position: fixed;
    inset: 0;
    z-index: 1;
}

#loading {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #111111;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 999;
    background: #ffffff;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#progress-bar-wrap {
    width: 220px;
    height: 4px;
    background: #e0e0e0; /* Abu-abu terang */
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

#progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #000000; /* Garis hitam */
    border-radius: 2px;
    transition: width 0.2s ease-out;
}

#mode-bar {
    display: none !important;
}

#ar-prompt {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    background: rgba(15, 15, 22, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 18px;
    color: #e0e0ff;
    font-size: 13px;
    text-align: center;
    pointer-events: none;
    display: none;
}

/* Bottom Left Target Thumbnails */
#target-thumbnails {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(15, 15, 22, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px 12px;
}

.thumb-title {
    color: #8888aa;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.thumb-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.thumb-list a:hover {
    transform: translateY(-2px);
}

.thumb-list img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.thumb-list span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
}
