/* SalesPal tab components */

.sp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.sp-tab-item {
  list-style: none;
}

.sp-tab-link {
  padding: 0.6rem 1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: block;
  transition: color 0.2s, border-color 0.2s;
}

.sp-tab-link:hover {
  color: #555;
}

.sp-tab-link.active {
  color: #1a1a2e;
  border-bottom-color: #43B02A;
}

.sp-tab-content {}

.sp-tab-pane {
  display: none;
}

.sp-tab-pane.sp-show,
.sp-tab-pane.active {
  display: block;
}
