.nfc-publish-checklist {
  margin: 18px 0 14px;
  padding: 15px 16px;
  border: 1px solid #d8e3e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(18, 74, 89, 0.06);
}

.nfc-publish-checklist[hidden] {
  display: none !important;
}

.nfc-checklist-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  margin-bottom: 10px;
}

.nfc-checklist-title {
  color: #123f49;
  font-size: 15px;
  font-weight: 700;
}

.nfc-checklist-summary {
  color: #5d7075;
  font-size: 13px;
  line-height: 1.4;
}

.nfc-publish-checklist[data-state="ready"] .nfc-checklist-summary {
  color: #237a49;
}

.nfc-publish-checklist[data-state="incomplete"] .nfc-checklist-summary {
  color: #a24c21;
}

.nfc-checklist-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nfc-checklist-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid #e7edef;
  border-radius: 9px;
  background: #fbfcfc;
  color: #30474d;
  font-size: 13px;
}

.nfc-checklist-item.is-missing,
.nfc-checklist-item.is-recommended {
  cursor: pointer;
}

.nfc-checklist-item.is-missing:hover,
.nfc-checklist-item.is-recommended:hover {
  border-color: #b9ced3;
  background: #f6fafb;
}

.nfc-checklist-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6edef;
  color: #52676c;
  font-weight: 800;
  line-height: 1;
}

.nfc-checklist-item.is-complete .nfc-checklist-mark {
  background: #e5f5eb;
  color: #237a49;
}

.nfc-checklist-item.is-missing .nfc-checklist-mark {
  background: #fff0e8;
  color: #b45120;
}

.nfc-checklist-item.is-recommended .nfc-checklist-mark {
  background: #eef4f6;
  color: #3b7280;
}

.nfc-checklist-label {
  min-width: 0;
  font-weight: 600;
}

.nfc-checklist-state {
  color: #718388;
  font-size: 11px;
  white-space: nowrap;
}

.nfc-checklist-item.is-complete .nfc-checklist-state {
  color: #237a49;
}

.nfc-checklist-item.is-missing .nfc-checklist-state {
  color: #a24c21;
}

@media (max-width: 680px) {
  .nfc-publish-checklist {
    margin-top: 14px;
    padding: 13px;
    border-radius: 10px;
  }

  .nfc-checklist-header {
    display: block;
  }

  .nfc-checklist-summary {
    display: block;
    margin-top: 4px;
  }

  .nfc-checklist-list {
    grid-template-columns: 1fr;
  }

  .nfc-checklist-item {
    min-height: 36px;
  }
}
