    html,
      body {
        height: 100%;
        margin: 0;
        padding: 0;
        font-family: "TildaSans", sans-serif;
        overflow: hidden;
      }

      body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: #efefef;
      }

      .container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        padding: 5px 0;
        box-sizing: border-box;
      }

      #ButtonContainer {
        text-align: center;
        margin-top: 10vh;
      }
      .bubbly-button {
        min-width: 300px;
        min-height: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: "TildaSans", sans-serif;
        font-size: 23px;
        font-weight: 600;
        text-align: center;
        text-transform: none;
        letter-spacing: 0;
        color: #282828;
        background-color: #fff;
        border: 2px solid #282828;
        border-radius: 12px;
        box-shadow: none;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        padding: 12px 24px;
        display: none; 
        margin: 40px auto 0;
      }

      .bubbly-button:hover {
        background-color: #282828;
        color: #fff;
      }

      .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        align-items: center;
        justify-content: center;
      }

      .modal-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 600px;
        margin: auto;
        background: #efefef;
        padding: 20px;
        border: 1px solid #888;
        border-radius: 30px;
        font-size: 23px;
        color: #2d292a;
      }

      .modal-content img {
        max-width: 90%;
        margin-top: 0px;
      }

      .qr-code {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 270px;
        height: 270px;
        background-color: #fff;
        position: relative;
      }

      .qr-image {
        width: auto;
        height: auto;
        max-width: 20%;
        max-height: 20%;
        position: absolute;
        z-index: 1;
      }

      .close {
        color: #000000;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
      }

      .close:hover,
      .close:focus {
        color: black;
        text-decoration: none;
      }

      model-viewer {
        width: 100vw;
        height: 70vh;
        margin: 0;
        padding: 0;
      }

      #controls {
        position: absolute;
        bottom: 16px;
        left: 16px;
        max-width: unset;
        transform: unset;
        pointer-events: auto;
        z-index: 100;
      }

      .dot {
        display: none;
      }

      .dim {
        background: #fff;
        border-radius: 3px;
        border: none;
        box-sizing: border-box;
        box-shadow: 0 8px 4px rgba(0, 0, 0, 0.2);
        color: rgba(0, 0, 0, 1);
        display: block;
        font-family: Futura, Helvetica Neue, sans-serif;
        font-size: 1em;
        font-weight: 700;
        max-width: 128px;
        overflow-wrap: break-word;
        padding: 0.25em 0.5em;
        position: absolute;
        width: max-content;
        height: max-content;
        transform: translate3d(-50%, -50%, 0);
        pointer-events: none;
        --min-hotspot-opacity: 0;
      }

      @media only screen and (max-width: 600px) {
        .dim {
          font-size: 3.5vw;
        }
      }

      .dimensionLineContainer {
        pointer-events: none;
        display: block;
      }

      .dimensionLine {
        stroke: #000;
        stroke-width: 1;
        stroke-dasharray: 4;
      }

      .hide {
        display: none;
      }

      :not(:defined) > * {
        display: none;
      }

      .model-viewer-ar-button.android {
        display: none !important;
      }

      #navigation-buttons {
        position: absolute;
        top: 50px;
        right: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin: 0;
        padding: 0;
      }

      .navigation-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 10px 0;
        cursor: pointer;
        object-fit: cover;
        border: 1.5px solid #333;
        transition: border 0.3s ease, transform 0.3s ease;
      }

      .navigation-circle:hover {
        border-color: #282828;
        transform: scale(1.1);
      }

      .navigation-circle.active {
        border-color: #282828;
        transform: scale(1.2);
      }
        .ar-note-mobile {
        font-size: 11px;
        color: #282828;
        margin-top: 10px;
        text-align: center;
        width: 100%;
        display: none;
        font-family: "TildaSans", sans-serif;
      }

      @media only screen and (max-width: 768px) {
        .ar-note-mobile {
          display: block;
        }
      }