body {
  margin: 0;
  background: #090d14;
  color: #e5edf7;
}

.loginShell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.loginCard {
  width: min(420px, 100%);
}

.captchaRow {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
  align-items: center;
}

.captchaImage {
  width: 150px;
  height: 48px;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  cursor: pointer;
}

.adminShell {
  min-height: 100vh;
}

.adminHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid #1e293b;
  background: #0f172a;
}

.brand {
  font-size: 16px;
  font-weight: 800;
}

.adminContent {
  padding: 20px 24px 32px;
}

.sectionTitle {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
}

.toolbar {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.reportToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reportStat .ant-card-body {
  min-height: 112px;
}

.metricGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #263449;
  background: #263449;
}

.metricItem {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 64px;
  padding: 14px;
  background: #111827;
}

.metricItem span,
.rateItem span {
  color: #94a3b8;
}

.metricItem strong {
  font-size: 22px;
}

.rateList {
  display: grid;
  gap: 1px;
  border: 1px solid #263449;
  background: #263449;
}

.rateItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 10px 14px;
  background: #111827;
}

.rateItem div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rateItem b {
  color: #60a5fa;
  font-size: 18px;
}

.extractSummary {
  margin-bottom: 12px;
}

.submissionLink {
  height: auto;
  padding: 0;
  white-space: normal;
  text-align: left;
}

.submissionTagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 180px;
  overflow: auto;
}

.submissionTextBlock {
  max-height: 220px;
  margin: 0;
  padding: 12px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid #263449;
  border-radius: 8px;
  background: #0f172a;
  color: #cbd5e1;
  line-height: 1.6;
}

.adminAttachmentRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #263449;
  border-radius: 8px;
  background: #0f172a;
}

.adminAttachmentRow > div {
  min-width: 0;
}

.adminAttachmentRow strong {
  display: block;
  overflow: hidden;
  color: #e5e7eb;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestionList {
  margin: 0;
  padding-left: 18px;
  color: #aab7c7;
  line-height: 1.8;
}

.tokenText {
  font-family: Consolas, "SFMono-Regular", monospace;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 720px) {
  .adminContent {
    padding: 14px;
  }

  .reportToolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .metricGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
