/* Deals page */

.deal-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.deal-active    { background: var(--success); }
.deal-completed { background: var(--text-3); }
.deal-cancelled { background: var(--danger); }

.star-rating {
  display: flex;
  gap: 4px;
}

.star-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  transition: color var(--transition);
  padding: 0 2px;
}

.star-btn.active { color: #d29922; }
.star-btn:hover  { color: #d29922; }
