.custom-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.tab-btn {
  padding: 10px 24px;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  min-width: 140px;
}

.tab-btn.active {
  background: #ffd700;
  color: #000;
  border-color: #ffd700;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Mobile */
@media (max-width: 767px) {

  .custom-tabs {
    gap: 6px;
    flex-wrap: wrap;          /* Allow buttons to wrap */
    justify-content: center;
    width: 100%;
  }

  .tab-btn {
    min-width: 90px;
    max-width: 140px;
    width: auto;
    padding: 6px 10px;        /* Reduced button size */
    font-size: 12px;          /* Smaller text */
    line-height: 1.2;
    border-radius: 4px;
    white-space: normal;      /* Allow text wrapping */
    word-break: break-word;
    text-align: center;
  }
}