.custom-tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tab-title {
  padding: 10px 14px;
  border: 1px solid #ccc;
  background: #f1f1f1;
  border-radius: 4px;
  cursor: pointer;
}
.tab-title.active {
  background-color: #005f73;
  color: white;
  border-color: #005f73;
}
.tab-content {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 4px;
  background: white;
}
