.networth-card {
  text-align: center;
}

.networth-card .value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin: var(--space-xs) 0 var(--space-md);
}

.networth-breakdown {
  display: flex;
  justify-content: space-around;
}

.card-item {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.card-item:last-child {
  border-bottom: none;
}

.card-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.card-item-name {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
}

.card-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.card-item-numbers {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  margin-top: 6px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--space-xl) 0 var(--space-sm);
}

.refresh-link {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
}

.refresh-link:disabled {
  opacity: 0.5;
}

.stock-quote-box {
  margin: -4px 0 var(--space-lg);
  font-size: var(--font-size-sm);
}

.stock-quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stock-quote-total {
  margin-top: 4px;
  font-weight: 600;
}

.fund-search-results {
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  max-height: 220px;
  overflow-y: auto;
}

.fund-search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
}

.fund-search-item:last-child {
  border-bottom: none;
}

.fund-search-item-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fund-search-item-code {
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
  flex-shrink: 0;
}
