/* ============================================================
 *  Bundle 标签切换
 * ============================================================ */

.tab-section {
  padding-top: 0;
}

.bundle-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 0;
}

.bundle-tab {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.bundle-tab:hover {
  color: var(--text-primary);
  background: rgba(99, 102, 241, 0.05);
}

.bundle-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

#currentBundle {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
 *  搜索高亮（单元格级别）
 * ============================================================ */

.handsontable td.search-cell-matched {
  background-color: rgba(255, 213, 0, 0.25) !important;
}

.handsontable td.search-cell-current {
  background-color: rgba(255, 200, 0, 0.45) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 180, 0, 0.8);
}
