body {
  margin: 0;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

h2 {
  padding-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

p {
  padding-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}


.header h2 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

#inset-map {
  width: 120px;
  height: 120px;
  border-radius: 50%;             /* Makes it a circle */
  overflow: hidden;               /* Ensures map doesn't spill outside the circle */
  border: 2px solid #333;         /* Optional: visible border */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);  /* Optional: adds subtle shadow */
  position: absolute;
  bottom: 100px;                   /* Adjust position as needed */
  right: 20px;
  z-index: 10;
}

/* Map takes up remaining vertical space */
#map {
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 0;
}


/* Popup text formatting */
.mapboxgl-popup-content h4 {
  font-weight: 300;
  font-size: 0.9em;
  border-bottom: 0.5px solid rgb(80, 80, 80);
  margin: 0.5em 0;
}

.mapboxgl-popup-content h2 {
  font-weight: 500;
  margin: 0.5em 0 0.3em;
}

.mapboxgl-popup-content p {
  font-weight: 300;
  margin: 0.3em 0 0;
}

/* Footer */
footer {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 10px;
  font-size: 14px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  padding-right: 160px;
}

.footer-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.footer-logo {
  max-height: 60px;
  height: auto;
  padding-top: 20px;
}
/* Responsive adjustments */
@media (max-width: 600px) {
  #map {
    height: 400px;
  }

  .header {
    padding: 10px;
    /* margin: 0 10px; */
  }
}