.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;
}

.details-tabs {
  display: flex;
  justify-content: center;
}

.tabs-content {
  max-width: 800px;
  display: none;
}

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

@media screen and (max-width: 426px) {
  .tab-btn {
    font-size: 12px;
  }
}
