/* Styles for the pad-match-widget rendered inside agent chat responses */
/* Brand: #050505 bg / #0a0a0a card / #1f1f1f border / #ebebeb text / #d69414 brass / #05ffc4 signal */

/* Widget container */
.pad-match-widget {
  font-family: 'Inter', sans-serif;
}

/* Candidate buttons */
.pad-match-widget .candidate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: #1f1f1f;
  color: #ebebeb;
  padding: 0.375rem 0.75rem;
  border-radius: 0;
  border: 1px solid #2a2a2a;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.pad-match-widget .candidate-btn:hover {
  background-color: #2a2a2a;
  border-color: #d69414;
}
.pad-match-widget .candidate-btn.selected {
  background-color: #d69414;
  color: #050505;
  border-color: #d69414;
  box-shadow: none;
}

/* Skip button variant */
.pad-match-widget .skip-btn {
  background-color: #1f1f1f;
  color: rgba(235, 235, 235, 0.5);
  border: 1px solid #2a2a2a;
}
.pad-match-widget .skip-btn:hover {
  background-color: rgba(127, 29, 29, 0.3);
  color: #fca5a5;
  border-color: #7f1d1d;
}
.pad-match-widget .skip-btn.selected {
  background-color: #7f1d1d;
  color: #fca5a5;
  border-color: #ef4444;
  box-shadow: none;
}

/* Score badge */
.pad-match-widget .score-badge {
  font-size: 0.6875rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.125rem 0.375rem;
  border-radius: 0;
  line-height: 1.2;
}
.pad-match-widget .candidate-btn.selected .score-badge {
  background-color: rgba(0, 0, 0, 0.25);
  color: rgba(5, 5, 5, 0.7);
}

/* Pad rows */
.pad-match-widget .pad-match-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid #1f1f1f;
}
.pad-match-widget .pad-match-row:last-child {
  border-bottom: none;
}

/* Confirm button enabled state (applied by JS) */
.pad-match-widget .confirm-btn-enabled {
  background-color: #d69414;
  color: #050505;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s;
}
.pad-match-widget .confirm-btn-enabled:hover {
  background-color: #b37a10;
}
.pad-match-widget .confirm-btn-disabled {
  background-color: #1f1f1f;
  color: rgba(235, 235, 235, 0.3);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: none;
  font-size: 0.875rem;
  cursor: not-allowed;
  opacity: 1;
}

/* Auto-matched disclosure table */
.pad-match-widget .auto-matched-disclosure summary {
  list-style: none;
}
.pad-match-widget .auto-matched-disclosure summary::-webkit-details-marker {
  display: none;
}
.pad-match-widget .auto-matched-disclosure summary::before {
  content: "\25B8 ";
  margin-right: 0.25rem;
}
.pad-match-widget .auto-matched-disclosure[open] summary::before {
  content: "\25BE ";
}
