/* ── Item Lifecycle: Finalization UI ── */
.lc-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.lc-badge.lc-final {
  background: rgba(0, 212, 170, 0.15);
  color: #00d4aa;
}
.lc-badge.lc-provisional {
  background: rgba(124, 92, 255, 0.15);
  color: #a78bfa;
}
.lc-btn {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  transition: background 0.15s;
}
.lc-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lc-btn.lc-finalize-btn {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.3);
  color: #00d4aa;
}
.lc-btn.lc-finalize-btn:hover {
  background: rgba(0, 212, 170, 0.2);
}
.lc-btn.lc-provisional-btn {
  background: rgba(124, 92, 255, 0.1);
  border-color: rgba(124, 92, 255, 0.3);
  color: #a78bfa;
}
.lc-btn.lc-reopen {
  color: #94a3b8;
  font-size: 10px;
}
/* Finalize modal */
.lc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lc-modal {
  background: var(--color-surface-solid-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 480px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
}
.lc-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lc-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
}
.lc-modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.lc-modal-body {
  padding: 20px 24px;
}
.lc-field {
  margin-bottom: 16px;
}
.lc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
}
.lc-field select,
.lc-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e2e8f0;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
}
.lc-field textarea {
  resize: vertical;
}
.lc-attestation {
  padding: 12px;
  background: rgba(255, 170, 0, 0.06);
  border: 1px solid rgba(255, 170, 0, 0.2);
  border-radius: 8px;
}
.lc-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.4;
}
.lc-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.lc-modal-footer {
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.lc-modal-footer .lc-btn {
  padding: 8px 20px;
  font-size: 13px;
}
.lc-modal-footer .lc-submit {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.4);
  color: #00d4aa;
  font-weight: 600;
}
.lc-modal-footer .lc-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.lc-evidence-summary {
  font-size: 12px;
  color: #94a3b8;
}
