/* Barre d'onglets horizontale */
.ccx-sa-tabs {
  display: flex;
  gap: 12px;
  padding: 12px 0 20px;
  overflow-x: auto;
}

.ccx-sa-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 40px;
  border: 2px solid #e5e7eb;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  transition: all .25s ease;
}

.ccx-sa-tab:hover {
  border-color: #00ff6a;
  color: #00ff6a;
}

.ccx-sa-tab--active {
  background: #00ff6a;
  color: #0b0f12;
  border-color: #00ff6a;
}

.ccx-sa-tab-icon {
  font-size: 18px;
}
