/* RESET */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
}

/* MAP */
#map {
  position: fixed;
  inset: 0;
  z-index: 1;
}

/* NAVBAR */
.navbar-glass {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.nav-link {
  font-weight: 500;
  color: #374151;
}

/* FLOATING PANEL */
.floating-panel {
  position: absolute;
  top: 90px;
  left: 20px;
  width: 360px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 900;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}

.panel-header h6 {
  margin: 0;
  font-weight: 700;
}

.panel-header p {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.panel-body {
  overflow-y: auto;
}

/* GYM ITEM */
.gym-item {
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.gym-item:hover {
  background: #f9fafb;
}

.gym-item strong {
  display: block;
  font-size: 0.9rem;
}

.gym-item span {
  font-size: 0.75rem;
  color: #6b7280;
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
}