/*
 * ScoutLog App Styles - Route Planner Edition
 * Floating HUD Layout with Monochrome Glass
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   BASE APP LAYOUT
   ======================================== */

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--ink-primary);
  background: #f8fafc;
}

.app {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* ========================================
   FULL-SCREEN MAP
   ======================================== */

.map {
  position: absolute;
  inset: 0;
  z-index: var(--z-map);
}

/* Cursor states */
.map--drawing {
  cursor: crosshair !important;
}

.map--drawing .leaflet-container {
  cursor: crosshair !important;
}

.map--grab {
  cursor: grab;
}

.map--grabbing {
  cursor: grabbing;
}

/* Leaflet overrides for minimal look */
/* Move zoom controls to bottom-right */
.leaflet-top.leaflet-left {
  top: auto !important;
  left: auto !important;
  bottom: var(--hud-padding) !important;
  right: var(--hud-padding) !important;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: var(--shadow-glass) !important;
  margin: 0 !important;
}

.leaflet-control-zoom a {
  background: var(--glass-surface) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  color: var(--ink-primary) !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-size: var(--text-xl) !important;
  font-weight: var(--font-light) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--glass-surface-hover) !important;
}

.leaflet-control-zoom-in {
  border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
}

.leaflet-control-zoom-out {
  border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
}

.leaflet-control-attribution {
  background: var(--glass-surface) !important;
  backdrop-filter: var(--glass-blur);
  padding: var(--space-1) var(--space-2) !important;
  font-size: var(--text-xs) !important;
  color: var(--ink-secondary) !important;
}

/* ========================================
   GLASS PANEL - Base Component
   ======================================== */

.glass-panel {
  background: var(--glass-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.glass-panel--dark {
  background: var(--glass-surface-dark);
  color: var(--ink-inverse);
}

/* ========================================
   CONTROL DOCK - Top Left Pill
   ======================================== */

.control-dock {
  position: fixed;
  top: var(--hud-padding);
  left: var(--hud-padding);
  z-index: var(--z-hud);

  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-3);

  background: var(--glass-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glass);
}

.control-dock__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-2);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  color: var(--ink-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.control-dock__logo-icon {
  font-size: var(--text-lg);
}

.control-dock__divider {
  width: 1px;
  height: 24px;
  background: var(--glass-border);
}

.control-dock__actions {
  display: flex;
  gap: var(--space-1);
}

.control-dock__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);

  background: transparent;
  border: none;
  border-radius: var(--radius-md);

  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--ink-secondary);

  cursor: pointer;
  transition: all var(--transition-fast);
}

.control-dock__btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-primary);
}

.control-dock__btn--active {
  background: var(--glass-surface-dark);
  color: var(--ink-inverse);
}

.control-dock__btn--active:hover {
  background: var(--glass-surface-dark-hover);
  color: var(--ink-inverse);
}

.control-dock__btn:focus-visible {
  outline: 2px solid var(--ink-primary);
  outline-offset: 2px;
}

.control-dock__btn-icon {
  font-size: var(--text-base);
}

/* ========================================
   LOG LIST - Bottom Left Floating
   ======================================== */

.log-list {
  position: fixed;
  bottom: var(--hud-padding);
  left: var(--hud-padding);
  z-index: var(--z-hud);

  width: 320px;
  max-height: calc(100vh - 140px);

  display: flex;
  flex-direction: column;

  background: var(--glass-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);

  overflow: hidden;
}

.log-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--glass-border-subtle);
}

.log-list__title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--ink-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.log-list__count {
  font-size: var(--text-xs);
  color: var(--ink-secondary);
}

.log-list__items {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 8px !important;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-subtle) transparent;
}

.log-list__items::-webkit-scrollbar {
  width: 4px;
}

.log-list__items::-webkit-scrollbar-track {
  background: transparent;
}

.log-list__items::-webkit-scrollbar-thumb {
  background: var(--ink-subtle);
  border-radius: 2px;
}

.log-list__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-4);
  text-align: center;
}

.log-list__empty-icon {
  font-size: var(--text-2xl);
  color: var(--ink-muted);
  margin-bottom: var(--space-2);
}

.log-list__empty-text {
  font-size: var(--text-sm);
  color: var(--ink-secondary);
}

/* ========================================
   LOG CARD - Individual Entry
   ======================================== */

.log-card {
  position: relative;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);

  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--radius-lg);

  cursor: pointer;
  transition: all var(--transition-fast);
}

.log-card:last-of-type {
  margin-bottom: 0;
}

.log-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-glass);
  transform: translateY(-1px);
}

.log-card:focus-visible {
  outline: 2px solid var(--ink-primary);
  outline-offset: 2px;
}

/* Type indicator - colored bar on left */
.log-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--space-3);
  bottom: var(--space-3);
  width: 3px;
  border-radius: 2px;
  background: var(--ink-secondary);
}

.log-card--route::before {
  background: var(--ink-primary);
}

.log-card--spot::before {
  background: var(--ink-muted);
}

.log-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.log-card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.log-card--route .log-card__icon-wrapper {
  background: rgba(15, 23, 42, 0.08);
}

.log-card__icon {
  font-size: var(--text-base);
  color: var(--ink-primary);
}

.log-card__content {
  flex: 1;
  min-width: 0;
}

.log-card__title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--ink-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--space-1);
}

.log-card__date {
  font-size: var(--text-xs);
  color: var(--ink-muted);
}

.log-card__delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  border-radius: var(--radius-md);
  color: #ef4444;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.15s ease;
}

.log-card:hover .log-card__delete {
  opacity: 1;
  transform: scale(1);
}

.log-card__delete:hover {
  background: #ef4444;
  color: white;
}

.log-card__delete i {
  font-size: 14px;
}

.log-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.log-card__stat {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex-shrink: 0;
}

.log-card__stat-icon {
  font-size: var(--text-sm);
  color: var(--ink-muted);
}

.log-card__stat-value {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--ink-primary);
  font-family: var(--font-mono);
}

.log-card__stat-unit {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  font-weight: var(--font-regular);
}

/* Spot-specific styling */
.log-card--spot .log-card__footer {
  display: none;
}

.log-card--spot .log-card__header {
  margin-bottom: 0;
}

/* ========================================
   ROUTE PANEL - Bottom Center (Active Drawing)
   ======================================== */

.route-panel {
  position: fixed;
  bottom: var(--hud-padding);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-panel);

  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);

  background: var(--glass-surface-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-elevated);

  color: var(--ink-inverse);

  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
}

.route-panel--visible {
  opacity: 1;
  pointer-events: auto;
}

.route-panel__distance {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.route-panel__distance-value {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  font-family: var(--font-mono);
}

.route-panel__distance-unit {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.route-panel__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.route-panel__hint {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.route-panel__hint kbd {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  margin: 0 var(--space-1);
}

/* ========================================
   DISTANCE TOOLTIP - Near Cursor
   ======================================== */

.distance-tooltip {
  position: fixed;
  z-index: var(--z-tooltip);

  padding: var(--space-1) var(--space-2);
  background: var(--glass-surface-dark);
  border-radius: var(--radius-sm);

  font-size: var(--text-xs);
  font-family: var(--font-mono);
  font-weight: var(--font-medium);
  color: var(--ink-inverse);

  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.distance-tooltip--visible {
  opacity: 1;
}

/* ========================================
   LOG FORM DIALOG
   ======================================== */

.log-form {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 380px;
  max-width: calc(100% - var(--space-8));
  padding: 0;

  background: var(--glass-surface);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);

  overflow: hidden;
}

.log-form::backdrop {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.log-form[open] {
  animation: dialogFadeIn var(--transition-base) forwards;
}

@keyframes dialogFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.log-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  border-bottom: 1px solid var(--glass-border-subtle);
}

.log-form__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--ink-primary);
}

.log-form__type-badge {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  background: var(--glass-surface-dark);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--ink-inverse);
}

.log-form__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;

  background: transparent;
  border: none;
  border-radius: var(--radius-md);

  color: var(--ink-secondary);
  font-size: var(--text-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.log-form__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-primary);
}

.log-form__content {
  padding: var(--space-5);
}

/* ========================================
   FORM FIELDS
   ======================================== */

.form-field {
  margin-bottom: var(--space-4);
}

.form-field__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--ink-secondary);
  margin-bottom: var(--space-2);
}

.form-field__input,
.form-field__textarea {
  width: 100%;
  padding: var(--space-3);

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--radius-md);

  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--ink-primary);

  transition: all var(--transition-fast);
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: var(--ink-muted);
}

.form-field__input:hover,
.form-field__textarea:hover {
  border-color: var(--glass-border);
}

.form-field__input:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: var(--ink-primary);
  background: rgba(255, 255, 255, 0.8);
}

.form-field__input--readonly {
  background: rgba(0, 0, 0, 0.03);
  color: var(--ink-primary);
  font-family: var(--font-mono);
  font-weight: var(--font-semibold);
}

.form-field__textarea {
  min-height: 80px;
  resize: vertical;
}

.form-field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-field__unit {
  position: relative;
}

.form-field__unit-label {
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-sm);
  color: var(--ink-muted);
  pointer-events: none;
}

.form-field__unit .form-field__input {
  padding-right: var(--space-10);
}

/* Calculated output */
.form-field__output {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-md);
}

.form-field__output-label {
  font-size: var(--text-sm);
  color: var(--ink-secondary);
}

.form-field__output-value {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--ink-primary);
}

/* ========================================
   FORM ACTIONS
   ======================================== */

.form-actions {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--glass-border-subtle);
}

.form-actions__btn {
  flex: 1;
  padding: var(--space-3);

  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);

  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-actions__btn--secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-secondary);
}

.form-actions__btn--secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--ink-primary);
}

.form-actions__btn--primary {
  background: var(--glass-surface-dark);
  color: var(--ink-inverse);
}

.form-actions__btn--primary:hover {
  background: var(--glass-surface-dark-hover);
}

.form-actions__btn:focus-visible {
  outline: 2px solid var(--ink-primary);
  outline-offset: 2px;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--glass-surface-dark);
  color: var(--ink-inverse);
  text-decoration: none;
  font-weight: var(--font-semibold);
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

*:focus-visible {
  outline: 2px solid var(--ink-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .log-form[open] {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

.log-list__drag-handle {
  display: none;
  width: 32px;
  height: 4px;
  background: var(--ink-subtle);
  border-radius: 2px;
  margin: 12px auto 4px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .control-dock {
    top: 24px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px;
    width: 90%;
    max-width: 360px;
    justify-content: space-between;
  }

  /* Hide button text on mobile */
  .control-dock__btn span {
    display: none;
  }

  .control-dock__btn {
    padding: 10px;
  }

  /* Bottom Sheet Log List */
  .log-list {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 80vh;
    border-radius: 24px 24px 0 0;
    border-bottom: none;

    /* Collapsed state: hide everything except header + handle */
    transform: translateY(calc(100% - 68px));
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);

    display: flex;
    flex-direction: column;
    z-index: 2000; /* Above everything else */
  }

  .log-list.is-expanded {
    transform: translateY(0);
  }

  .log-list__drag-handle {
    display: block;
  }

  .log-list__header {
    border-bottom: none;
    padding: 12px 24px 16px;
    cursor: pointer;
  }

  .log-list__items {
    padding-bottom: 24px !important;
  }

  /* Adjust other elements to not be covered */
  .route-panel {
    left: var(--space-4);
    right: var(--space-4);
    bottom: 80px; /* Above the collapsed sheet */
    transform: none;
    z-index: 1000;
  }

  /* Move attribution up */
  .leaflet-control-attribution {
    margin-bottom: 72px !important;
  }

  /* Always show delete button on mobile (no hover) */
  .log-card__delete {
    opacity: 1;
    transform: scale(1);
    background: transparent; /* Cleaner look when always visible */
  }
}

/* ========================================
   DELETE CONFIRMATION DIALOG
   ======================================== */

.delete-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100%;
  max-height: 100%;
  width: 100vw;
  height: 100vh;
}

.delete-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.delete-dialog__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  width: 340px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.delete-dialog__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #fef2f2;
  border-radius: 50%;
  color: #ef4444;
  font-size: 32px;
}

.delete-dialog__title {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.delete-dialog__message {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 28px;
}

.delete-dialog__actions {
  display: flex;
  gap: 12px;
}

.delete-dialog__btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.delete-dialog__btn--cancel {
  background: #f1f5f9;
  color: #475569;
}

.delete-dialog__btn--cancel:hover {
  background: #e2e8f0;
}

.delete-dialog__btn--delete {
  background: #ef4444;
  color: white;
}

.delete-dialog__btn--delete:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* ========================================
   LOCATION PERMISSION OVERLAY
   ======================================== */

.location-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.location-overlay--visible {
  display: flex;
}

.location-overlay__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  width: 300px;
  max-width: 90vw;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.location-overlay__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #f1f5f9;
  border-radius: 50%;
  color: #0f172a;
  font-size: 24px;
}

.location-overlay__title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.location-overlay__description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

.location-overlay__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.location-overlay__btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.location-overlay__skip {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 8px;
  background: transparent;
  border: none;
  font-size: 13px;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.15s ease;
}

.location-overlay__skip:hover {
  color: #64748b;
}
