/* LOCATLAS Header Styling - Stacked Logos */
.locatlas-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.header-logo-main {
  height: 32px;
  width: auto;
  display: block;
}

.header-logo-locale {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.8;
}

#map {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

/* Fix mobile top bar position to be below header */
@media (max-width: 768px) {
  .mobile-top-bar {
    top: 70px !important; /* Position below header */
    z-index: 1000 !important; /* Above header (999) so buttons are clickable */
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .locatlas-header {
    padding: 8px 15px;
    gap: 4px;
  }
  
  .header-logo-main {
    height: 28px;
  }
  
  .header-logo-locale {
    height: 16px;
  }
  
  #map {
    top: 65px;
  }
}

/* Desktop - slightly larger */
@media (min-width: 769px) {
  .locatlas-header {
    padding: 12px 30px;
    gap: 8px;
  }
  
  .header-logo-main {
    height: 36px;
  }
  
  .header-logo-locale {
    height: 20px;
  }
  
  #map {
    top: 80px;
  }
}
