/* index.html specific styles */

.currency-toggle {
  display: inline-flex;
  gap: 6px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-top: 16px;
}

.currency-toggle button {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.currency-toggle button.active {
  background: var(--color-primary);
  color: #fff;
}
