/* TechTools — text-dedup styles (auto-extracted) */
.mode-tabs {
    display: flex; gap: 4px; flex-wrap: wrap;
    background: rgba(255,255,255,0.04); border-radius: 10px;
    padding: 4px; margin-bottom: 16px;
  }
  .mode-tab {
    padding: 8px 16px; text-align: center;
    border-radius: 8px; font-size: 13px; font-weight: 500;
    cursor: pointer; color: var(--text-secondary);
    transition: all 0.25s ease; user-select: none;
    white-space: nowrap;
  }
  .mode-tab.active {
    background: rgba(147,129,255,0.2); color: var(--accent-purple); font-weight: 600;
  }
  .mode-tab:hover:not(.active) { color: var(--text-primary); }
  .toggle-option {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary); cursor: pointer;
    user-select: none;
  }
  .toggle-switch {
    position: relative; width: 40px; height: 22px;
    background: rgba(255,255,255,0.12); border-radius: 11px;
    transition: background 0.3s ease; cursor: pointer;
  }
  .toggle-switch.on { background: rgba(147,129,255,0.5); }
  .toggle-switch::after {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff;
    transition: transform 0.3s ease;
  }
  .toggle-switch.on::after { transform: translateX(18px); }
  .count-display {
    text-align: center; font-size: 14px; color: var(--text-secondary);
    padding: 8px 0; margin: 8px 0; min-height: 24px;
  }
  .count-display strong { color: var(--accent-purple); }
  .params-row {
    display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
    margin-bottom: 12px;
  }
