/* Matching Studio specific styles */

/* Enhanced matching table highlights */
.matching-studio .table tbody tr.top-match {
  background-color: var(--success-light);
  border-left: 3px solid var(--success);
}

/* Drag and drop zones */
.drop-zone {
  min-height: 200px;
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.drop-zone.drag-over {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

.drop-zone.dragging {
  opacity: 0.5;
}

/* Match score visualizations */
.match-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.match-metric {
  text-align: center;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 6px;
}

.match-metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.match-metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
