.sc-panel { border-top: 1px solid #e5e5e5; padding: 16px 0; }
.sc-panel__header { display: flex; align-items: center; gap: 12px; }
.sc-panel__header h3 { margin: 0; font-size: 16px; }
.sc-count { color: #777; font-weight: normal; }
.sc-form { margin: 12px 0; padding: 12px; background: #fafafa; border-radius: 6px; }
.sc-form__row { margin-bottom: 10px; display: flex; flex-direction: column; gap: 4px; }
.sc-form__row label { font-weight: 600; font-size: 13px; }
.sc-form__locked { color: #555; }
.sc-form__row input, .sc-form__row textarea {
  padding: 6px 8px; border: 1px solid #ccc; border-radius: 4px; font: inherit;
}
.sc-counter { font-size: 11px; color: #999; align-self: flex-end; }
.sc-form__actions { display: flex; gap: 8px; justify-content: flex-end; }
.sc-btn { padding: 6px 14px; border: 1px solid #ccc; background: white;
          border-radius: 4px; cursor: pointer; }
.sc-btn--primary { background: #1d6ae5; color: white; border-color: #1d6ae5; }
.sc-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.sc-form__error { color: #c00; margin-top: 8px; }
.sc-list { list-style: none; margin: 12px 0 0; padding: 0; }
.sc-list li {
  padding: 10px 12px; margin-bottom: 8px; background: white;
  border: 1px solid #e5e5e5; border-radius: 4px;
}
.sc-list li.sc-pending { opacity: 0.6; }
.sc-list li.sc-retracted { background: #f7f7f7; text-decoration: line-through; }
.sc-comment__meta { font-size: 12px; color: #666; margin-bottom: 4px; }
.sc-comment__source { font-size: 11px; padding: 2px 6px; border-radius: 3px;
                       background: #eef; margin-left: 6px; }
.sc-comment__body { white-space: pre-wrap; }

/* ── Quick-comment dialog ─────────────────────────────── */
.sc-qc-dialog {
  border: none; border-radius: 8px; padding: 0;
  width: 480px; max-width: 95vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.24);
}
.sc-qc-dialog::backdrop { background: rgba(0,0,0,0.45); }
.sc-qc-dialog__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #e5e5e5;
  background: #f9f9f9; border-radius: 8px 8px 0 0;
}
.sc-qc-dialog__title { display: flex; align-items: baseline; gap: 6px; font-size: 15px; }
.sc-qc-dialog__vin { font-family: monospace; font-size: 13px; color: #555; }
.sc-qc-dialog__close {
  background: none; border: none; font-size: 22px; line-height: 1;
  cursor: pointer; color: #888; padding: 0 4px;
}
.sc-qc-dialog__close:hover { color: #222; }
.sc-qc-dialog__form { padding: 16px; background: white; border-radius: 0 0 8px 8px; margin: 0; }

/* ── Vehicle-modal Quick Comment button ───────────────── */
.vm-quick-comment {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 4px;
  background: #1d6ae5; color: white; border: none;
  cursor: pointer; font-size: 13px; font-weight: 500; margin-right: 8px;
}
.vm-quick-comment:hover { background: #1558c4; }
