
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-link {
  padding: 10px 15px;
  border: none;
  background-color: orange;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.tab-link.active {
  background-color: #222;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-content ul {
  list-style: none;
  padding: 0;
}
.tab-content ul li {
  padding: 10px;
  background: #f4f4f4;
  margin-bottom: 5px;
  border-left: 5px solid orange;
}
