
.proximity-strip.svelte-1tighzf {
  position: absolute;
  top: var(--header-height-top);
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  margin-top: 4px;
}

  /* Warning banner -  no geo data available */
.proximity-strip.empty.svelte-1tighzf {
  padding: 12px 16px;
  text-align: center;
  justify-content: center;
  font-size: 0.85rem;
  background-color: #fdecea;
  color: #611a15;
  font-weight: 500;
  border-bottom: 1px solid #f5c6cb;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
}

.location-button.svelte-1tighzf {
  position: relative; /* for positioning the ::before layer */
  flex: 1 1 0;
  max-width: calc(33.333% - 4px);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.location-button.empty-slot.svelte-1tighzf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f3f1eb; /* soft ivory */
  color: #aaa;
  font-style: italic;
  border: 1px dashed #ccc;
  border-radius: 999px;
  padding: 8px;
  max-width: calc(33.333% - 4px);
  text-align: center;
  flex: 1 1 0;
}

/* Mobile layout — align with safe area */
@media (max-width: 1024px) {
  .proximity-strip.svelte-1tighzf {
    top: env(safe-area-inset-top, 4px);
  }
}

/* Landscape mobile layout: vertical stack on the left */
@media (max-width: 1024px) and (orientation: landscape) {
  .proximity-strip.svelte-1tighzf {
    top: env(safe-area-inset-top, 4px);
    left: env(safe-area-inset-left, 0px);
    flex-direction: column; /* stack vertically */
    align-items: flex-start; /* align to the left */
    max-width: 15vw;
    gap: 6px;
  }

  .location-button.svelte-1tighzf,
  .location-button.empty-slot.svelte-1tighzf {
    width: 100%;
    max-width: 100%; 
    min-height: 23vh;
    height: 150px;
  }

  .filter-toggle.svelte-1tighzf {
  left: 0px;
  }
}

  /* Blinking animation for <25m */
  .blinking.svelte-1tighzf {
    animation: svelte-1tighzf-blink-bg 1s infinite;
  }

  @keyframes svelte-1tighzf-blink-bg {
    0% { opacity: 1; }
    20% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 1; }
  }

  .location-name.svelte-1tighzf {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 450;
    font-size: 1.1rem;
    max-width: 100%;
    text-decoration: none;
  }

  .distance.svelte-1tighzf {
    font-size: 0.95rem;
    color: #555;
    display: block;
    margin-top: 0; 
  }

.filter-toggle.svelte-1tighzf {
  position: absolute;
  bottom: -30px;
  right: 10px;
  z-index: 20;

  width: 36px;
  height: 36px;
  padding: 0;

  background-color: #fffef0;
  border: 1px solid #2e7d32;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1rem;
  cursor: pointer;
  transform: translate(4px, 4px);
  transition: transform 0.15s ease;
}
.filter-toggle.filter-unsolved.svelte-1tighzf {
  background-color: #667832;
  border-color: #2e7d32;
}
