.locations-map-layout {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  background: #eef2f5;
}

.locations-map-canvas {
  width: 100%;
  min-height: 520px;
}

.locations-panel {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 3;
    width: 303px;
    padding: 20px;
    border-radius: 20px;
    background: #2A3E4F;
    box-shadow: 0 8px 18px rgba(12, 21, 30, 0.25);
    backdrop-filter: blur(3px);
    overflow: auto;
}

#locationSearch {
    width: 100%;
    margin-bottom: 12px;
    padding: 11px 14px 11px 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    background-image: url(search-icon.png);
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 12px 12px;
}

#locationSearch::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 225px;
    overflow-y: auto;
}
.location-list .location-item {
    width: 100%;
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
    text-align: left;
    padding: 5px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.location-list .location-item:hover {
    background: rgb(255 255 255 / 10%);
    border-color: #527D97;
}

.location-item-thumb-wrap {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.location-item-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-item-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-item strong {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-item-meta span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}
.location-item-meta span:first-child {
    font-weight: normal;
}
.location-list .location-item:hover, .location-list .location-item:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.location-item.is-empty {
  cursor: default;
}

.map-info-window {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .locations-map-layout {
    min-height: 700px;
  }

  .locations-map-canvas {
    min-height: 700px;
  }

  .locations-panel {
    left: 12px;
    right: 12px;
    width: auto;
    max-height: 260px;
  }
}
