.tabBar {
  display: flex;
    gap: 0;
    margin-bottom: 0.5rem;
    overflow-x: auto;
    WebkitOverflowScrolling: touch;
    
    scrollbar-width: thin;
    ms-overflow-style: -ms-autohiding-scrollbar;
    background: transparent;
    align-items: center;
}

.tab {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px 0;
  background-color: #2C3E50;
  margin-right: 5px;
  border-radius: 0;
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 1px;
  border: none;
  cursor: pointer;
  min-width: 100px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  outline: none;
}

.tab:last-child {
  margin-right: 0;
}

.active .tabLabel {
  animation: blink 1.1s infinite;
}

.tabLabel {
  width: max-content;
  display: block;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 600px) {
  .tabBar {
    gap: 0;
    padding-bottom: 4px;
  }
  .tab {
    font-size: 13px;
    padding: 7px 0;
    min-width: 80px;
  }
} 