body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

#map {
    max-height: 500px;
    max-width: 800px;
    height: 50%;
    width: 90%;
}

button {
    margin-top: 10px;
}

#result, #poi-name {
    margin-top: px;
    font-weight: bold;
}

ul {
    list-style-type: none;
    padding: 0;
}

.poi-marker {
    background-color: red;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid white;
}

.bottomright {
    position: fixed;
    bottom: 8px;
    right: 16px;
    font-size: 18px;
    z-index: 999; /* Ensure it's above other content */
    border: 2px solid rgba(255,255,255,0); /* Add a border */
    padding: 5px; /* Add padding to the box */
    background-color: white; /* Fill with white color */
    border-radius: 20px; /* Add rounded corners */
}

  .bottomleft {
    position: fixed;
    bottom: 8px;
    left: 16px;
    font-size: 18px;
    z-index: 999; /* Ensure it's above other content */
    display: none;
}

@media (max-width: 600px) {
    .bottomright {
        display: none;
    }
    .bottomleft {
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        margin: 0;
    }
    .support-icon {
        display: none!important;
    }
}

#configurator-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
  }
  
.close-button {
position: absolute;
top: 10px;
right: 10px;
color: white;
font-size: 20px;
}
  
#configurator-overlay form input {
    cursor: pointer;
  }
  
  #configurator-overlay form checkbox {
    cursor: pointer;
  }
  
  #configurator-overlay form button {
    cursor: pointer;
  }
  