.container {
  display: flex;
  justify-content: space-between;
}

#canvas-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
}

#controls-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#coordinates {
  width: 25%; /* Decrease the width */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 150px; /* Add padding to the right */
}


#dropdown-container {
  margin-top: 110px; /* Increase margin to create more space */
}

#download {
  margin-top: 50px;
}

#dots {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

h2 {
  margin-bottom: 10px;
}

.no-select {
  user-select: none;
}