/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
/* Navigation bar */
.tab-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  border-bottom: 2px solid #ccc;
}

/* Tab button */
.tab-btn {
  padding: 8px 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.tab-btn.active {
  border-bottom: 2px solid #000;
  font-weight: bold;
}

/* Panels */
.tab-panel {
  display: none;
  padding: 16px 0;
}

.tab-panel.active {
  display: block;
}