
 
html,
body,
#map 
{
    height: 99vh;

  width: 100%;

  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#bottom-bar {
  position: fixed;
  bottom: 0; /* Updated from -100px for visibility */
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  transition: bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1050;
  padding: 10px;
  box-sizing: border-box;
}

#tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.tab-button {
  padding: 10px 20px;
  background: #555;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-button.active, .tab-button:hover {
  background-color: #777;
}

.tab-content {
  display: none;
  text-align: center;
}

.tab-content.active {
  display: block;
}

.parcel-image {
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.info h4, .info p {
  margin: 5px 0;
  text-align: center;
}


#toggle-button {
  position: sticky;
  text-align: center;
  cursor: pointer;
  border: none;
  color: white;
  border-radius: 5px 5px 0 0;
  outline: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  margin: 2px;
  border-radius: 4px;
  font-size: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.fa-bars {
  transition: transform 0.3s ease-in-out;
}
 
#header-logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    max-width: 115px;  
    height: auto;  
}
 
.side-panel {
  
    position: fixed;
    top: 1%;  
    right: 10px;
    width: 110px;
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 5;  
}