/* Reset unwanted spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
}

/* Center and size map */
.map-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

iframe.small-map {
  width: 100%;       /* Use full width or adjust as needed */
  max-width: 1500px; /* Optional cap */
  height: 450px;
  border: 0;
  border-radius: 8px;
  display: block;    /* Prevent inline spacing */
  vertical-align: top;
}

/* Optional: Add some margin above the navigation section */
#position {
  margin-top: 20px;
}
