.toggle-container {
  width: 100%;
  max-width: 1512px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.toggle-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.toggle-btn {
  flex: 1; /* Makes both buttons the exact same size regardless of text */
  max-width: 250px;
  padding: 12px;
  border: 1px solid var(--button-border, #ddd);
  background: var(--card-bg, #fff);
  color: var(--button-bg, #434343);
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--button-bg, #434343);
  color: #fff;
}

/* Section visibility rules */
.tab-content {
  display: none; /* Hidden by default */
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block; /* Shown when active */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}