body {
  margin: 0;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Disclaimer banner */
.disclaimer-banner {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 10px 20px;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 16px;
  z-index: 1000;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* Clinic Map Style */
.legend {
  background: white;
  padding: 10px;
  margin: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  overflow-y: auto;
  max-height: 50vh;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.legend-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

/* Drop down */
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: #f9f9f9;
  color: black;
  padding: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.dropdown-list {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  border: 1px solid #ccc;
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
}

.dropdown-list.show {
  display: block;
}

.dropdown-item {
  padding: 5px;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}