/* settings-tabs.css — tabbed layout for /wa/settings */
.ttp-hide { display: none !important; }
.ttp-stab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 14px;
}
.ttp-stab-btn {
  border: 1px solid #dfe6e2;
  background: #fff;
  color: #4a5a53;
  border-radius: 999px;
  padding: 7px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ttp-stab-btn:hover { border-color: #b9cfc6; color: #14231e; }
.ttp-stab-btn.active {
  background: #128c7e;
  border-color: #128c7e;
  color: #fff;
}
@media (max-width: 720px) {
  .ttp-stab-bar { gap: 5px; }
  .ttp-stab-btn { padding: 6px 11px; font-size: 12px; }
}
