#header {
    border-top: 4px solid #CC0D0D;
    background-color: #363B40;
    height: 80px;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;  /* Vertically center the items */
    justify-content: center;
    gap: 30px;
    box-shadow: 0 5px 10px -2px gray;
}

#header .button {
    border: 2px solid #CC0D0D;
    border-radius: 7px;
    background-color: #CC0D0D;
    padding: 5px;
    cursor: pointer;
    height: 100%;
}

#header .button-icon {
    height: 100%;
    color: white;
    stroke-color: white;
    fill: white;
    height: 100%;
}

#main-content {
  display: flex;
  align-items: center;  /* Vertically center the items */
  justify-content: center;
  padding: 10px;
  overflow: auto;
}

#bottom-bar {
  width: 100%;
  background-color: #363B40;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;  /* Vertically center the items */
  justify-content: center;
  height: 60px;
  cursor: pointer;
}

.map-recenter-button {
    /* Position the button in the middle bottom of the map */
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
    /* Center the contents vertically and horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: large;
    /* Use the height and border radius to create a pill shape */
    height: 60px;
    border: 3px solid rgb(194, 178, 128);
    border-radius: 30px;
    padding: 10px 30px 10px 30px;
    background-color: rgb(242 236 217 / 70%);
    cursor: pointer;
    color: #444;
}
