.mapToolbar h1 {
  white-space: nowrap;
  font-size: clamp(12px, 2.2vw, 30px) !important;
  letter-spacing: -0.035em !important;
}

.taskManageActions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 95, 167, 0.18);
}

.taskManageActions button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.taskEditButton {
  flex: 1;
  color: #1d5fa7;
  background: #edf5fd;
  border: 1px solid #1d5fa7;
}

.taskDeleteButton {
  color: #9f2727;
  background: #fff4f4;
  border: 1px solid #d9a4a4;
}

.taskManageActions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.locationPicker {
  border: 1px solid #d0deeb;
  border-radius: 14px;
  background: #f7faff;
  padding: 16px;
  display: grid;
  gap: 12px;
}
.locationPickerHeader strong,
.locationPickerHeader span {
  display: block;
}
.locationPickerHeader strong {
  font:
    600 19px Georgia,
    serif;
  color: #164a82;
}
.locationPickerHeader span {
  font-size: 12px;
  color: #667b91;
  margin-top: 4px;
}
.locationSearchRow {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}
.locationSearchRow input {
  min-width: 0;
}
.locationSearchRow button {
  border: 0;
  border-radius: 9px;
  padding: 10px 13px;
  font-weight: 800;
}
.locationSearchButton {
  background: #1d5fa7;
  color: #fff;
}
.locationCurrentButton {
  background: #e2eef9;
  color: #1d5fa7;
}
.locationResults {
  border: 1px solid #d5e3f0;
  background: #fff;
  border-radius: 10px;
  max-height: 180px;
  overflow: auto;
}
.locationResults button {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #edf3f8;
  background: #fff;
  padding: 10px 12px;
  text-align: left;
  font-size: 12px;
  color: #284d72;
}
.locationResults button:hover {
  background: #f0f7fd;
}
.locationPickerMap {
  height: 330px;
  border-radius: 11px;
  overflow: hidden;
  background: #dfeaf4;
}
.locationPickerStatus {
  margin: 0 !important;
  color: #506b86 !important;
  font-size: 12px !important;
}
.brand > span {
  display: none !important;
}
@media (max-width: 650px) {
  .locationSearchRow {
    grid-template-columns: 1fr 1fr;
  }
  .locationSearchRow input {
    grid-column: 1/-1;
  }
  .locationPickerMap {
    height: 280px;
  }
}
