/* body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
  text-align: center;
}

h1 {
  color: #333;
} */

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2a4832;
  /* Bar color */
  color: white;
  padding: 0 15px;

  height: 60px;
  min-height: 10%;

  box-sizing: border-box;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  bottom: 0px;
  justify-content: space-between;
  align-items: center;

  background-color: #2a4832;
  color: white;
  padding: 0 15px;

  height: 60px;
  min-height: 10%;
  z-index: 99999;

  box-sizing: border-box;
}

#map {
  position: absolute;
  top: 50px;
  bottom: 50px;
  width: 100%;
}

.button {
  background-color: #3b82f6;
  /* Button color */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  width: 100px;
  /* Fixed width */
  cursor: pointer;
  border-radius: 4px;
  /* Optional: adds rounded corners to buttons */
}

.button-wide {
  background-color: #3b82f6;
  /* Button color */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  width: 150px;
  /* Fixed width */
  cursor: pointer;
  border-radius: 4px;
  /* Optional: adds rounded corners to buttons */
}

.title {
  flex-grow: 1;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: Lato, sans-serif;
  overflow: hidden;
  /* Ensures text doesn't overflow the div */
  white-space: nowrap;
  /* Prevents wrapping and keeps text in one line */
  text-overflow: ellipsis;
  /* Adds an ellipsis if text is too long */
}

.hidden {
  display: none;
}