.mc-user-location {
  border: 0 !important;
  background: transparent !important;
}

.mc-user-location::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: rgb(0 168 207 / 20%);
  animation: mc-location-pulse 1.8s ease-out infinite;
}

.mc-user-location span {
  position: absolute;
  inset: 5px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--mc-cyan);
  box-shadow: 0 2px 8px rgb(23 56 75 / 34%);
}

@keyframes mc-location-pulse {
  0% { transform: scale(.65); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

.mc-weighted-cluster div {
  width: 38px;
  height: 38px;
  margin: 4px;
  display: grid;
  place-items: center;
}

.mc-weighted-cluster span {
  line-height: 1;
}

.mc-pin.reserved {
  background: #f59e0b;
}

.mc-pin.offline {
  background: #697782;
}

.mc-power {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
}

.mc-power b {
  font-size: 12px;
}

.mc-power small {
  margin-top: 2px;
  font-size: 7px;
  font-weight: 800;
}

.search-suggestions {
  position: absolute;
  z-index: 530;
  top: 62px;
  left: 0;
  right: 0;
  max-height: min(55vh, 390px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #dfe7ea;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 34px rgb(20 48 63 / 25%);
}
.search-suggestions[hidden] { display: none; }
.search-suggestions button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 11px 9px;
  border: 0;
  border-bottom: 1px solid #edf1f2;
  background: #fff;
  color: var(--mc-ink);
  text-align: left;
}
.search-suggestions button:last-child { border-bottom: 0; }
.search-suggestions button.selected,
.search-suggestions button:active { background: #eef9fb; }
.search-result-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f7fa;
  color: var(--mc-cyan-dark);
  font-weight: 800;
}
.search-suggestions strong,
.search-suggestions small { display: block; overflow: hidden; text-overflow: ellipsis; }
.search-suggestions strong { font-size: 13px; white-space: nowrap; }
.search-suggestions small { margin-top: 3px; color: var(--mc-muted); font-size: 10px; line-height: 1.3; }
.search-no-results { padding: 15px; color: var(--mc-muted); font-size: 13px; text-align: center; }
@media (max-width: 420px) {
  .search-suggestions { top: 55px; max-height: 52vh; }
}

.filters-sheet { padding-left: 18px; padding-right: 18px; }
.filters-sheet h2 { margin: 0 0 24px; font-size: 23px; }
.filters-sheet h3 { margin: 20px 0 10px; color: #3d4955; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.filter-check { min-height: 42px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf1f2; font-size: 14px; }
.filter-check input { width: 19px; height: 19px; accent-color: var(--mc-cyan-dark); }
.connector-filter-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.connector-filter-grid button { min-width: 0; min-height: 80px; display: grid; place-items: center; align-content: center; gap: 7px; padding: 8px 4px; border: 1px solid #dce4e7; border-radius: 13px; background: #fff; color: #36434e; }
.connector-filter-grid button.selected { border: 2px solid var(--mc-cyan-dark); padding: 7px 3px; background: #edfafd; color: var(--mc-cyan-dark); }
.connector-filter-grid img { width: 38px; height: 38px; padding: 7px; object-fit: contain; border: 1px solid #d7e0e4; border-radius: 10px; }
.connector-filter-grid span { max-width: 100%; overflow: hidden; font-size: 10px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.power-filter { margin-top: 18px; }
.power-filter>div { display: flex; align-items: center; justify-content: space-between; }
.power-filter h3 { margin: 0; }
.power-filter strong { color: #687580; font-size: 12px; }
.power-filter input { width: 100%; margin: 12px 0 6px; accent-color: #21466f; }
.power-filter small { color: #78858e; font-size: 10px; }
.filter-actions { position: sticky; bottom: calc(-24px - var(--safe-bottom)); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px -2px 0; padding: 12px 2px calc(16px + var(--safe-bottom)); background: linear-gradient(transparent,#fff 14%); }
.filter-actions button { min-height: 48px; border: 0; border-radius: 12px; font-weight: 800; }
.filter-actions button:first-child { background: #f0f2f4; color: #56636e; }
.filter-actions button:last-child { background: var(--mc-cyan-dark); color: #fff; }
.icon-button.filters-active { color: var(--mc-cyan-dark); background: #e4f8fb; border-radius: 10px; }
