
html,body{
    overflow: hidden;
}

#main{
    text-align: center;
}

#maps{
   position: absolute;
   left: 10px;
   bottom: 175px;
   font-size: 18px;
}

.button-wrapper{
    position: absolute;
    bottom: 5px;
    left: 10px;
}

.size-wrapper{
    position: absolute;
    bottom: 65px;
    left: 10px;
    display: flex;
    flex-direction: column;
}

.size-wrapper label{
    margin-bottom: 5px;
    font-size: 20px;
}

.color-wrapper{
    position: absolute;
    left: 10px;
    bottom: 130px;
    display: flex;
}

#color-label{
    margin: 2px 10px 0 0;
    position: relative;
    top: -1px;
}

.colors{
   display: flex;
   gap: 7px;
   align-items: center;
}

#color-black{
    background-color: #333333;
}

#color-gray{
    background-color: #727580;
}

#color-red{
    background-color: #D1190D;
}

#color-blue{
    background-color: #0084B6;
}

#color-orange{
    background-color: #F36E24;
}

#color-green{
    background-color: #95C93C;
}

.selected-color{
    position: relative;
}

.selected-color:after{
content: "";
  position: absolute;
  top: -0.1em;
  left: -0.1em;
  right: -0.1em;
  bottom: -0.1em;
  background: transparent;
  border-radius: 0.8em; /* Keeps the rounded corner effect */
  box-shadow: 0 0 0 0.1em #333; /* Creates the "outer" square outline effect */
}

.color{
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50px;
}

.color-wrapper p{
    font-size: 20px
}

button{
    background-color: #D1190D !important;
    border: .15em solid #D1190D !important;
    color: #FFF !important;
    text-align: center !important;
    padding: .5em 1.8em !important;
    margin: .5em 0em !important;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none !important;
}

#map{
    margin: 0 auto;
    object-fit: contain;
    height: 95vh;
}

#canvas{
    position: absolute; 
    top: 0; 
    left: 0;
    right: 0;
    margin: 8px auto;
}

.qr-code-image{
    position: absolute;
    right: 20px;
    bottom: 20px;
}

canvas:hover ~ .circle{
   display: block;
}

.circle { 
   display: none;  
   width: 5px;
   height: 5px;
   border-radius: 50%;
   position: absolute;
   pointer-events: none; /* Allows clicks to go through the circle */
   z-index: 1000; /* Ensure it's on top of other elements */
}
