/* Dashboard specific */
.dashboard-section {
  margin-bottom: var(--space-xl);
}

.dashboard-section h2 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.recent-list {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-lg);
  border-bottom: 1px solid var(--divider);
  font-size: 0.9rem;
}

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

.recent-item-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.recent-item-date {
  font-size: 0.8rem;
  color: var(--text-hint);
}
