body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #ded37140;
}

h1 {
  font-family: "Light Beach", sans-serif;
  font-size: 4em;
  margin: 0.25em;
}

input,
button,
select {
  border-radius: 10px;
  border: 1px solid #000;
  padding: 10px;
  margin: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgb(255, 255, 255);
  border: navajowhite;
}

input:disabled,
button:disabled {
  background-color: #ececec;
}

div#map-container {
  width: 100vw;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

div#map-container > * {
  padding: 10px;
  margin: 10px;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

div#side {
  width: 30%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  min-width: 300px;
  background-color: #56b2d6b5;
  color: white;
  display: none;
}

li {
  list-style-type: none;
  padding: 10px;
  border-bottom: 1px solid #fff;
}

li > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

li > div > button {
  margin: 5px;
}

.beach-details {
  display: none;
}

#loading {
  display: none;
  position: absolute;
  top: 65%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Accordion */
#filter-heading {
  border: none;
  margin: 0;
  padding: 0;
}

.accordion-button {
  background-color: #f8f8f8;
  border: none;
  cursor: pointer;
  margin: 0;
}

.accordion-collapse {
  display: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
}

.accordion-collapse.show {
  display: block;
}
