.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 100;
}

.tab {
  padding: 8px 16px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 4px;
}

.tab.active {
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.tab.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .tabs {
    padding: 10px 40px;
    top: 15px;
    justify-content: flex-end;
    padding-right: 60px;
  }
  
  .tab {
    font-size: 14px;
    padding: 8px 16px;
  }
}