/* map.css - Consolidated styles for the map page (index.html)
   Dark theme, fullscreen map, FlightRadar24-style layout */

/* ============================================================
   MAP PAGE BASE LAYOUT
   ============================================================ */

/* Map page reset — only reset direct layout elements, not Google Maps internals */

html, body {
  height: 100%;
}

body.map-page {
  font-family: var(--dsc-font);
  background: var(--dsc-bg);
  overflow: hidden;
}

/* Header override for map page — z-index and position */
body.map-page .header {
  z-index: 20;
  position: relative;
}

/* ============================================================
   MAP HEADER SPECIFIC ELEMENTS
   ============================================================ */

.menu-search {
  display: flex;
  align-items: center;
}

#search {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--dsc-text);
  font-size: 13px;
  width: 220px;
  margin-right: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(4px);
}

#search::placeholder {
  color: var(--dsc-text-muted);
  font-size: 12px;
}

#search:focus {
  border-color: var(--dsc-primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* Map page menu-button overrides */
body.map-page .menu-button {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

/* Hide Font Awesome icons on desktop */
.menu-button i {
  display: none;
}

/* ============================================================
   MAP CONTAINER — fullscreen
   ============================================================ */

.map-container {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
}

#map {
  height: 100%;
  width: 100%;
}

/* ============================================================
   AIRPORT PANEL (slide-in left)
   ============================================================ */

.airport-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 420px;
  background: rgba(27, 29, 35, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 10;
  color: var(--dsc-text);
  padding: 16px;
  padding-top: 48px;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}

.airport-panel.open {
  transform: translateX(0);
}

.airport-panel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dsc-border);
  color: var(--dsc-text-muted);
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.15s ease, color 0.15s ease;
  z-index: 11;
}

.airport-panel-close:hover {
  background: var(--dsc-danger);
  color: #fff;
}

/* Expand button — positioned left of the close button */
.airport-panel-expand {
  position: absolute;
  top: 12px;
  right: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dsc-border);
  color: var(--dsc-text-muted);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.15s ease, color 0.15s ease;
  z-index: 11;
}

.airport-panel-expand:hover {
  background: var(--dsc-primary);
  color: #fff;
}

/* Expanded state */
.airport-panel.expanded {
  width: 70vw;
}

/* Scrollbar for airport panel */
.airport-panel::-webkit-scrollbar {
  width: 6px;
}

.airport-panel::-webkit-scrollbar-track {
  background: transparent;
}

.airport-panel::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

/* ============================================================
   BOTTOM TOOLBAR
   ============================================================ */

.bottom-toolbar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(27, 29, 35, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toolbar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: var(--dsc-text-muted);
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 10px;
  gap: 5px;
  transition: all 0.2s ease;
  font-family: var(--dsc-font);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}

.toolbar-btn:hover {
  background: rgba(0, 174, 239, 0.1);
  color: var(--dsc-primary);
}

.toolbar-btn.active {
  background: rgba(0, 174, 239, 0.15);
  color: var(--dsc-primary);
}

.toolbar-btn i {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.toolbar-btn:hover i {
  transform: scale(1.15);
}

/* ============================================================
   LEGEND (bottom-left, dark glass)
   ============================================================ */

.filter-toggle-btn {
  position: absolute;
  bottom: 80px;
  left: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(27, 29, 35, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--dsc-text-muted);
  font-size: 14px;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.filter-toggle-btn:hover {
  background: rgba(50, 54, 65, 0.9);
}

.pin {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  vertical-align: middle;
}

.pin-blue {
  background-color: #3b82f6;
}

.pin-red {
  background-color: #ef4444;
}

.pin-green {
  background-color: #22c55e;
}

.pin-yellow {
  background-color: #eab308;
}

.pin-gray {
  background-color: #f97316;
}

/* ============================================================
   MAP FOOTER LINKS (bottom-right, discrete)
   ============================================================ */

.map-footer-links {
  position: absolute;
  bottom: 4px;
  right: 12px;
  display: flex;
  gap: 12px;
  font-size: 11px;
  z-index: 5;
}

.map-footer-links a {
  color: var(--dsc-text-muted);
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.15s, opacity 0.15s;
}

.map-footer-links a:hover {
  color: var(--dsc-primary);
  opacity: 1;
}

.map-footer-links .version {
  color: var(--dsc-text-muted);
  opacity: 0.5;
}

/* ============================================================
   AIRPORT INFO MODAL (kept for permits/country data)
   ============================================================ */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.3s;
}

.modal-content {
  width: 80%;
  max-height: 70%;
  overflow-y: auto;
  box-sizing: border-box;
  background-color: var(--dsc-bg-elevated);
  color: var(--dsc-text);
  margin: 10% auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
  position: relative;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.modal-content:hover {
  transform: none;
}

@media (min-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 50%;
  }
}

.close {
  color: var(--dsc-text-muted);
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 10;
}

.close:hover,
.close:focus {
  color: #ffffff;
  background-color: var(--dsc-danger);
  border-color: var(--dsc-danger);
  text-decoration: none;
  transform: scale(1.1);
}

/* ============================================================
   AI (AIRPORT INFO) STYLES WITHIN PANEL
   ============================================================ */

.ai-container {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: var(--dsc-text);
  border-radius: 0;
  box-shadow: none;
}

.ai-airportinfo h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--dsc-text);
}

.ai-title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--dsc-text);
}

.ai-list {
  list-style-type: none;
}

.ai-list li {
  margin-bottom: 0.5rem;
  background: var(--dsc-bg);
  border: 1px solid var(--dsc-border);
  color: var(--dsc-text);
  border-radius: 10px;
  padding: 10px;
}

.ai-service-category {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dsc-primary);
}

.ai-service-category:not(:first-child) {
  margin-top: 2rem;
}

.provider-name,
.provider-email,
.provider-phone,
.provider-frequency,
.provider-emergency-phone,
.provider-description {
  font-weight: 400;
  margin-left: 0.5rem;
}

/* ============================================================
   ALERT
   ============================================================ */

.alert-container {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}

.alert-warning {
  background-color: rgba(254, 243, 205, 0.9);
  color: #856404;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  font-size: 13px;
  padding: 8px 16px;
}

.close-alert {
  cursor: pointer;
  font-weight: bold;
  float: right;
  margin-left: 10px;
}

.bold-warning {
  font-weight: bold;
}

/* Forgot password link */
.forgot-password {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--dsc-primary);
  text-align: right;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* ============================================================
   REPORT MODAL (dark)
   ============================================================ */

/* ============================================================
   REPORT MODAL
   ============================================================ */
.report-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
}

.report-modal-content {
  background: var(--dsc-bg-elevated);
  color: var(--dsc-text);
  border: 1px solid var(--dsc-border);
  border-radius: 16px;
  padding: 32px;
  width: 90%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.report-modal-content h2 {
  color: var(--dsc-text);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px;
}

/* Form layout */
.report-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.report-modal-content .form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.report-modal-content .form-row.hidden {
  display: none !important;
}

.report-modal-content label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dsc-text-muted);
}

/* Inputs, selects, textarea */
.report-modal-content input[type="text"],
.report-modal-content input[type="email"],
.report-modal-content select,
.report-modal-content textarea {
  padding: 10px 14px;
  border: 1px solid var(--dsc-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--dsc-font);
  background: var(--dsc-bg);
  color: var(--dsc-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.report-modal-content input:focus,
.report-modal-content select:focus,
.report-modal-content textarea:focus {
  border-color: var(--dsc-primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
  outline: none;
}

.report-modal-content textarea {
  resize: vertical;
  min-height: 90px;
}

/* Radio button row — pill-style tabs */
.report-modal-content .radio-buttons-row {
  display: flex;
  gap: 0;
  background: var(--dsc-bg);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 4px;
  border: 1px solid var(--dsc-border);
}

.report-modal-content .radio-buttons-row input[type="radio"] {
  display: none;
}

.report-modal-content .radio-buttons-row label {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dsc-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.report-modal-content .radio-buttons-row input[type="radio"]:checked + label {
  background: var(--dsc-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
}

/* Recaptcha */
.report-modal-content .recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 4px 0;
}

/* Buttons */
.report-modal-content .buttons-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.report-modal-content button {
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--dsc-font);
  padding: 11px 20px;
  text-align: center;
  width: 100%;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.report-modal-content button:hover {
  transform: translateY(-1px);
}

.report-modal-content button:active {
  transform: translateY(0);
}

.report-modal-content button[name="submitReportButton"] {
  background: var(--dsc-primary);
  width: 50%;
}

.report-modal-content button[name="submitReportButton"]:hover {
  background: var(--dsc-primary-hover);
}

#closeReportModalButton {
  background: rgba(255, 255, 255, 0.08);
  color: var(--dsc-text-muted);
  border: 1px solid var(--dsc-border);
  width: 50%;
}

#closeReportModalButton:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--dsc-text);
  cursor: pointer;
}

/* Flash messages */
.report-modal-content .modal-message {
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
}

.report-modal-content .alert-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--dsc-success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.report-modal-content .alert-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--dsc-danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Specific-fields sections */
.report-modal-content .report-specific-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ============================================================
   FILTER PANEL (floating, bottom-right, dark glass)
   ============================================================ */

.filter-panel {
  position: absolute;
  bottom: 80px;
  left: 12px;
  background: rgba(27, 29, 35, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: var(--dsc-text-muted);
  font-size: 12px;
  padding: 12px 16px;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  min-width: 160px;
}

.filter-close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--dsc-text-muted);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.filter-close-btn:hover {
  opacity: 1;
}

.filter-panel-title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dsc-text-muted);
  margin-bottom: 8px;
  opacity: 0.7;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  cursor: pointer;
  transition: opacity 0.15s ease;
  opacity: 0.5;
}

.filter-option:has(input:checked) {
  opacity: 1;
}

.filter-option input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--dsc-primary);
  cursor: pointer;
  margin: 0;
}

.filter-option .pin {
  flex-shrink: 0;
}

.filter-country {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.country-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--dsc-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.country-input-wrap:focus-within {
  border-color: var(--dsc-primary);
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.15);
}

.filter-country input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 5px 8px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 11px;
  background: transparent;
  color: var(--dsc-text);
  outline: none;
  box-sizing: border-box;
}

.country-dropdown-toggle {
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dsc-text-muted);
  padding: 4px 7px;
  cursor: pointer;
  font-size: 9px;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.country-dropdown-toggle:hover {
  color: var(--dsc-primary);
}

.country-suggestions {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: rgba(27, 29, 35, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  max-height: 180px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

.country-suggestions li {
  padding: 6px 10px;
  font-size: 11px;
  color: var(--dsc-text);
  cursor: pointer;
  transition: background 0.12s ease;
}

.country-suggestions li:hover {
  background: rgba(0, 174, 239, 0.2);
  color: var(--dsc-primary);
}

.country-suggestions::-webkit-scrollbar {
  width: 4px;
}

.country-suggestions::-webkit-scrollbar-track {
  background: transparent;
}

.country-suggestions::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

/* ============================================================
   LIMIT MODAL (dark)
   ============================================================ */

#limit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#limit-modal .limit-modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--dsc-bg-elevated);
  color: var(--dsc-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 20px;
  width: 80%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: center;
}

#limit-modal .limit-modal-card h2 {
  margin-top: 0;
  color: var(--dsc-text);
}

#limit-modal #timer {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--dsc-success);
}

#limit-modal .limit-modal-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

/* Map blocked state */
body.map-blocked .map-container {
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================================
   COOKIE BANNER (dark)
   ============================================================ */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background-color: var(--dsc-bg-elevated);
  border-top: 1px solid var(--dsc-border);
  text-align: center;
  z-index: 1000;
  color: var(--dsc-text);
}

.cookie-banner a {
  color: var(--dsc-primary);
}

.cookie-banner button {
  background-color: var(--dsc-primary);
  border: none;
  color: white;
  padding: 10px 28px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.cookie-banner button:hover {
  background-color: var(--dsc-primary-hover);
  transform: translateY(-1px);
}

/* ============================================================
   TABLES (dark)
   ============================================================ */

.table th {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--dsc-text-muted);
  letter-spacing: 0.03em;
}

.table td {
  color: var(--dsc-text);
}

.table {
  border-color: var(--dsc-border);
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.03);
}

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

@media (max-width: 767px) {
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive thead,
  .table-responsive tbody,
  .table-responsive tr,
  .table-responsive th,
  .table-responsive td {
    display: block;
  }

  .table-responsive tr {
    border-bottom: 1px solid var(--dsc-border);
    margin-bottom: 10px;
  }

  .table-responsive th,
  .table-responsive td {
    border: none;
    border-bottom: 1px solid var(--dsc-border);
  }

  .table-responsive th {
    font-weight: bold;
  }

  .table-responsive th,
  .table-responsive td {
    text-align: left;
  }

  .table-responsive td:nth-of-type(1):before {
    content: attr(data-th) " ";
    font-weight: bold;
  }
}

/* ============================================================
   MAP PAGE MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {
  .mobile-menu {
    display: none;
  }

  .logo-img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .menu-search {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  /* On mobile: hide button text, show only icons */
  body.map-page .menu-button {
    font-size: 0;
    padding: 6px 10px;
  }

  body.map-page .menu-button i {
    display: inline-block;
    font-size: 1rem;
  }

  /* Airport panel fullscreen on mobile */
  .airport-panel {
    width: 100%;
  }

  /* Hide expand button on mobile — panel is already 100% */
  .airport-panel-expand {
    display: none;
  }

  /* Bottom toolbar adjustments */
  .bottom-toolbar {
    bottom: 8px;
  }

  .toolbar-btn span {
    display: none;
  }

  /* Hide footer links on mobile */
  .map-footer-links {
    display: none;
  }

  /* Filter panel position */
  .filter-panel {
    bottom: 70px;
  }

  .filter-toggle-btn {
    bottom: 70px;
  }
}
