body {
  font-family: sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  flex: 1;
}

.controls {
  padding: 10px;
  background: #d8f7ff;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.select-wrapper {
  display: flex;
  width: 100%;
}

.select-wrapper select {
  flex: 1;
  appearance: none;
  padding: 5px 1rem;

  font-size: 0.75rem;
  border-radius: 1000px;
  border: 1px solid black;
}

.upload-icon {
  width: 23px;
  height: 23px;
  border: 1px solid black;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-icon input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

.upload-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  transform: translate3d(0px, 1px, 0px);
}

button {
  padding: 5px 1rem;
  background-color: black;
  color: white;
  text-align: center;
  border: none;
  border-radius: 100px;
}

.mode-button {
  width: 25.5px;
  height: 25.5px;
  background-color: black;
  color: white;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease;

  &.state--active {
    background-color: green;
  }
}
