<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tabs-container {
  display: flex;
  justify-content: space-around;
  background: #111; /* Dark background */
  padding: 10px;
  border-radius: 10px; /* Soft rounded edges */
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.tab-btn.active {
  background: #444; /* Active tab background */
  color: #fff;
}

.tabs-content {
  display: none;
}

.tabs-content.active {
  display: block;
}

@media screen and (max-width: 426px) {
  .tab-btn {
    font-size: 12px;
  }
}
</pre></body></html>