/* Custom Styling and Print Optimization for Gyms Finder */

:root {
  --primary: #1e3a8a;
  --primary-hover: #1e40af;
  --accent: #0284c7;
  --bg-subtle: #f8fafc;
}

[x-cloak] {
  display: none !important;
}

/* Sticky Footer Layout Guarantee */
html {
  height: 100%;
}

body {
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a;
  background-color: #f8fafc;
}

main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
}

/* Custom scrollbar for split screen list */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Split-Screen Search Explorer Layout Guarantees */
@media (min-width: 768px) {
  #search-page-root {
    height: calc(100vh - 64px) !important;
    max-height: calc(100vh - 64px) !important;
    overflow: hidden !important;
  }
  #search-split-container {
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
  }
  #search-left-pane {
    display: flex !important;
    height: 100% !important;
    max-height: 100% !important;
  }
  #search-right-pane {
    display: block !important;
    height: 100% !important;
    max-height: 100% !important;
    position: relative !important;
  }
}

@media (max-width: 767.98px) {
  .mobile-tab-hidden {
    display: none !important;
  }
  #search-page-root {
    height: calc(100vh - 64px) !important;
    max-height: calc(100vh - 64px) !important;
  }
  #search-split-container {
    height: 100% !important;
    max-height: 100% !important;
  }
  #search-left-pane {
    height: 100% !important;
    max-height: 100% !important;
  }
  #search-right-pane {
    height: 100% !important;
    max-height: 100% !important;
    min-height: 300px;
    position: relative !important;
  }
}

/* Leaflet Map Customizations */
#map {
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 10;
}

.leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.school-pin {
  background-color: #1e3a8a;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.school-pin:hover, .school-pin-active {
  background-color: #0284c7;
  transform: scale(1.2);
  z-index: 1000 !important;
}

/* Print Stylesheet for Shortlist and Compare Export */
@media print {
  header, nav, footer, .no-print, #compare-floating-tray, .leaflet-control-container, #map {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .print-only {
    display: block !important;
  }

  .card-print {
    break-inside: avoid;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    margin-bottom: 1.5rem !important;
  }
}
