/* Behold dine eksisterende styles og tilføj: */

.tab-menu {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: inherit;
  font-weight: 600;
  color: #636e72;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.tab-btn:hover {
  background-color: #f0f7ff;
  color: #0984e3;
}

.tab-btn.active {
  background-color: #0984e3;
  color: white;
}
