html, body {
      margin: 0;
      padding: 0;
      height: 100%;
    }

    #map {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100%;
    }

    /* Overlay panel */
    #overlay {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 10;
      background: rgba(255, 255, 255, 0.075);
      color: rgb(255, 255, 255);
      padding: 12px;
      border-radius: 8px;
      max-width: 720px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    }

    .row {
      display: grid;
      grid-template-columns: 130px 80px 220px 1fr;
      gap: 8px;
      align-items: center;
      margin-bottom: 8px;
    }

    select, input {
      height: 34px;
    }

    .geocoder {
      min-width: 260px;
    }

    button {
      margin-top: 8px;
      padding: 6px 12px;
      cursor: pointer;
    }

    .header {
  display: grid;
  grid-template-columns: 130px 80px 220px 1fr;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.header div {
  padding-left: 4px;
}


#overlay {
  backdrop-filter: blur(6px);
}

.header {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 4px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: left;

}

.box div {
  width: 100px;
  height: 100px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}