html, body, #map {
  height: 100%;
  margin: 0;
  background-color: #101010;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
}

/* Map tile filter for a muted background look */
.leaflet-tile {
  filter: grayscale(100%) brightness(70%);
}

/* General text styles */
h1, h2, p, a, label {
  color: #ffffff;
  text-decoration: none;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

p {
  font-size: 1rem;
  font-weight: 700;
}

/* Top bar and layout containers */
#top, #main {
  padding: 2.5rem 5rem 0 5rem;
  display: flex;
  flex-direction: column;
}

#top {
  justify-content: space-between;
}

.left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.right {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.topbar {
  cursor: pointer;
  font-size: 1.5rem;
}

#icon {
  height: 3rem;
}

#title {
  font-size: 3rem;
  font-weight: 900;
}

/* Highlighted slogan box */
.slogan {
  border: 2px solid #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  width: fit-content;
  align-self: flex-start;
}

/* Map and dashboard layout */
#mapContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  height: fit-content;
}

#sampleMap {
  width: 80rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

/* Dashboard */
#dashboardContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
  height: 40rem;
}

#countyChart {
  color: #ffffff;
}

/* Buttons & inputs */
button {
  padding: 1rem 2rem;
  background-color: #ffffff;
  color: #101010;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #e5e5e5;
}

select {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: fit-content;
}

/* Misc */
.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header {
  padding-top: 4rem;
}

.topbar {
  display: flex;
  align-items: center;
}

#bonk {
  display: flex;
  justify-content: space-between;
}

.yap {
  width: 80em;
}

#reportContainer {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

select{
  margin-top: 2rem;
}

:root {
 margin-bottom: 4rem;
}