html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure full height for body and html */
}

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

.zoomin_msg_disable {
  display: none;
}

.zoomin_msg_enable {
  position: fixed;      /* Stay in place even when scrolling */
  top: 0;
  left: 0;
  width: 100vw;         /* Full viewport width */
  height: 95vh;        /* Full viewport height */
  background-color: rgba(0, 0, 0, 0); /* Optional: semi-transparent background */
  z-index: 9999;        /* Ensure it's on top of everything */

  display: flex;
  justify-content: center; /* center horizontally */
  align-items: flex-end;   /* align to bottom */

  pointer-events: none;
}

.zoomin_msg_text {
  background-color: rgba(255, 255, 255, 0.7); /* white, semi-transparent */
  /* padding: 1rem 2rem; */
  color: black; /* text color on light background */
  font-size: 1.5rem;
  text-align: center;
}

#progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: transparent;
  z-index: 10000;
  display: none;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background-color: #3498db;
  transition: width 0.3s ease;
}

/* Animated loading effect (loop) */
@keyframes loadingLoop {
  0%   { width: 0%; }
  50%  { width: 70%; }
  100% { width: 0%; }
}

#progress-bar.loading {
  animation: loadingLoop 1.5s infinite;
}

.layer-info-control {
  background: none;
  padding-left: 10px;
  color: #333;
  font-size: 11px;
  display: inline-block;
  vertical-align: middle;
}
