body {
    margin: 0;
    overflow-x: hidden;
}

#container {
    position: relative;
    width: 100vw;
    height: calc(100vh - 72px);
}

#imageContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#backgroundImage,
#depthCanvas,
#transparentImage,
#overlayObject {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
    pointer-events: none; /* Allows clicking through the overlay */

    max-width: 80%;
    max-height: 60%;
}

.hp-btns {
    z-index: 1111111;
    transform: translate(-50%, 0%);
    position: absolute;
    top: -100px;
    left: 50%;
}

/*#buttons {*/
/*    text-align: center;*/
/*    margin-top: 24px;*/
/*}*/

.padding {
    background-color: rgba(255,255,255,0.8);
    z-index: 3;
    position: absolute;
}

#guide {
    text-align: center;
}

.body-f {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.upload-box {
    margin: 16px;
}














#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.custom-svg-container {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.custom-svg {
  width: 100%;
  height: 100%;
  animation: rotate 2.5s linear infinite;
}

.loading-text {
    margin-top: 10px;
    font-weight: bold;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}



.logo-container {
    display: inline-block;
}
.logo-container svg {
    height: 100%; /* Make the SVG fill the height of the container */
    width: auto; /* Maintain the aspect ratio */
}

.text-gradient-override {
    background: -webkit-linear-gradient(315deg, #090112 0%, #c30f69 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
