* {
  box-sizing: border-box;
  font-family:
    Inter,
    system-ui,
    Segoe UI,
    Arial,
    sans-serif;
}
body {
  background: #f5f7fb;
  color: #0b1220;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 40px 16px;
}
.container {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.08);
  margin: 0 auto;
}
h1 {
  font-size: 20px;
  margin: 0 0 16px;
}
form {
  display: grid;
  gap: 10px;
}
label {
  font-size: 13px;
  color: #334155;
}
input {
  padding: 10px;
  border: 1px solid #e6eef8;
  border-radius: 6px;
  font-size: 15px;
}
button {
  padding: 10px 14px;
  border-radius: 8px;
  border: 0;
  background: #0b69ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
#result {
  margin-top: 16px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e6eef8;
  white-space: pre-wrap;
}

.columns {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.column {
  flex: 1 1 0;
  background: #ffffff;
  border: 1px solid #eef2ff;
  border-radius: 8px;
  padding: 12px;
  min-width: 0;
}
.column h3 {
  margin: 0 0 8px;
  font-size: 14px;
}
.column pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-size: 13px;
  max-height: 60vh;
  overflow: auto;
}

/* Latest status card */
.latest-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e6eef8;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  box-shadow: 0 4px 18px rgba(11, 18, 32, 0.06);
}
.latest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #475569;
}
.latest-date {
  font-weight: 600;
  color: #0b69ff;
}
.latest-type {
  font-size: 12px;
  color: #64748b;
  padding: 4px 8px;
  background: #f1f5f9;
  border-radius: 8px;
}
.latest-title {
  font-size: 18px;
  margin: 6px 0 8px;
}
.latest-desc {
  font-size: 14px;
  color: #0f172a;
  line-height: 1.45;
}
.status-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0b69ff;
  font-weight: 700;
  font-size: 12px;
}

/* Actions and original panel */
.actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.btn-primary {
  background: #0b69ff;
  color: #fff;
}
.btn-secondary {
  background: #eef2ff;
  color: #0b69ff;
}
.original-panel {
  margin-top: 12px;
  border-radius: 8px;
  padding: 12px;
  background: #0f172a;
  color: #e6eef8;
  font-family: monospace;
  font-size: 13px;
  display: none;
  max-height: 50vh;
  overflow: auto;
}
.small-muted {
  font-size: 12px;
  color: #64748b;
}
