a:link {
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: #000000;
  background-color: transparent;

}

a:hover {
  text-decoration: underline;
}

a:active {
  color: red;
  text-decoration: underline;
}


.tab {
  padding: 0.5rem 0.5rem;
  text-decoration: none;
  color: #000066;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
  white-space: nowrap;
  opacity: 0.5;
}

.tab:hover {
  background-color: #f0f0f0;
}

.tab.active {
  color: black;
  text-shadow: 0 0 10px white;
  background-color: #456e5d;
  border-bottom: 3px solid #000066;
  /* Underline for active tab */
  opacity: 1;
}

.tab-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.active {
  border-bottom: 2px solid #3B82F6;
  /* Tailwind's blue-500 */
  text-shadow: 0 0 2px rgb(0, 0, 0);
  font-weight: 700;
}

.notactive {
  color: grey;
}