.tab-container {
  background-color: #000;
  border: 2px solid #5d5858;
  border-radius: 8px;
  max-width: 98% !important;
  margin-bottom: 6vh !important;
  margin-top: 1.1rem !important;
  max-height: 29rem;
  display: flex;
  flex-direction: column;
}

.tab-header {
  display: flex;
  background-color: #111;
  border-bottom: 2px solid #5d5858;
  position: sticky;
  top: 0;
  z-index: 10; /* ensures it stays above scrollable content */
}

.tab-header button {
  flex: 1;
  padding: 12px;
  cursor: pointer;
  background-color: #111;
  color: white;
  border: none;
  border-right: 1px solid #5d5858;
  font-weight: bold;
  transition: background-color 0.2s;
}

.tab-header button:last-child {
  border-right: none;
}

.tab-header button.active {
  background-color: #5d5858;
  color: #000;
}

.tab-content {
  overflow-y: auto;
  flex: 1; /* fills remaining space in container */
  padding: 16px;
}

/* Custom scrollbar */
.tab-content::-webkit-scrollbar {
  width: 10px;
}

.tab-content::-webkit-scrollbar-track {
  background: #000;
}

.tab-content::-webkit-scrollbar-thumb {
  background-color: #5d5858;
  border-radius: 6px;
  border: 2px solid #000;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
