/* Fix for tab list items - bullet points always visible, subtle hover */
.ht-tab .tab-list ul li,
.ht-tab .tab-list li {
  position: relative;
  padding-left: 0 !important;
  transition: color 0.2s ease;
  cursor: default;
  display: flex;
  align-items: center;
}

.ht-tab .tab-list ul li::before,
.ht-tab .tab-list li::before {
  content: '' !important;
  display: none !important;
}

/* Subtle hover effect - just color change, no movement or scaling */
.ht-tab .tab-list ul li:hover,
.ht-tab .tab-list li:hover {
  color: var(--futura-primary);
  transform: none !important;
}

.ht-tab .tab-list ul li:hover::before,
.ht-tab .tab-list li:hover::before {
  color: var(--futura-accent);
  transform: translateY(-50%) scale(1) !important;
}
