/* set default body font */
body {
  font-family: Tahoma, Helvetica, sans-serif;
}
/* lower margins for h3 */
h3 {
  margin-top: auto;
  margin-bottom: auto;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* width: 100%; */
  z-index: 0;
}

#input-container {
  /* float in bottom left corner */
  position: absolute;
  left: auto;
  bottom: 10%;

  z-index: 2;
  height: fit-content;
  width: fit-content;
  padding: 10px;
  /* make vertical */
  display: flex;
  flex-direction: row;
  background-color: #000;
  color: #fff;
  /* add cyan border */
  border: 4px solid green;
}

#time-input-container {
  /* make vertical */
  display: flex;
  flex-direction: column;
  /* align to center */
  align-items: center;
  justify-content: center;
  border: 3px solid darkgray;
}

#floorButtons {
  /* make vertical */
  display: flex;
  flex-direction: column;
  /* align to center */
  align-items: center;
  justify-content: center;
  border: 3px solid darkgray;
}

.floor-number {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
  cursor: pointer;
}
.active {
  background-color: green;
  color: #fff;
}

.sidebar {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 2; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

/* The sidebar links */
.sidebar a {
  color: #818181;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  z-index: 2;
}

/* The button used to open the sidebar */
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
  z-index: 2;
  position: absolute;
  left: 50px;
}

.openbtn:hover {
  background-color: #444;
}

@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}

#event-list-container {
  z-index: 2;
  /* padding: 10px; */
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  border: 4px solid green;
}

#event-list {
  overflow-y: scroll;
  height: 100%;
  background-color: #333;
  color: #fff;
  border: 3px solid darkgray;
}

.event {
  padding: 5px;
  margin: 5px;
  border: 1px solid #fff;
  height: fit-content;
  border-radius: 5px;
  color: #fff;
  /* don't indent list items */
  list-style-type: none;
}

.event a {
  color: #fff;
}
