/* Top bar wrapper */
.topBarMenu {
  background: rgba(244, 247, 247, 0.75); /* Match hero feel */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Vuetify tab bar */
.v-tabs-bar {
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 12px;
  padding: 0 16px;
}

/* Individual tabs */
.v-tab {
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #0c1f1d !important;
  padding: 0 20px;
  transition: all 0.2s ease-in-out;
}

.v-tab:hover {
  color: #2b7a78 !important;
  transform: translateY(-1px);
}

/* Active tab (if selected) */
.v-tab--active {
  font-weight: 700 !important;
  border-bottom: 2px solid #2b7a78 !important;
  color: #2b7a78 !important;
}

/* Dropdown caret */
.v-tab .v-btn--icon i {
  font-size: 18px;
  color: #555;
}

/* Fix inner layout */
.v-tabs-bar__content {
  justify-content: center !important;
  gap: 32px;
}
