.manage-app {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
  color: #061529;
  box-shadow: 0 18px 48px rgba(15,23,42,.14);
}

.manage-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid #edf2f7;
  backdrop-filter: blur(16px);
}

.manage-header strong {
  text-align: center;
}

.manage-loading,
.manage-error,
.manage-content {
  padding: 22px 18px;
}

.manage-error {
  min-height: 70vh;
  display: grid;
  align-content: center;
  gap: 14px;
}

.manage-error[hidden],
.manage-content[hidden] {
  display: none;
}

.manage-kicker {
  margin: 0 0 8px;
  color: #1263f1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.manage-content h1,
.manage-error h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.manage-status {
  display: inline-flex;
  width: fit-content;
  margin: 16px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3c4;
  color: #8a5a00;
  font-weight: 900;
}

.manage-status[data-status="published"] {
  background: #dcfce7;
  color: #166534;
}

.manage-status[data-status="rejected"] {
  background: #fee2e2;
  color: #991b1b;
}

.manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.manage-grid article,
.manage-card,
.manage-note {
  border: 1px solid #d6e3f5;
  border-radius: 8px;
  background: #f6faff;
  padding: 14px;
}

.manage-grid span {
  display: block;
  color: #64748b;
  font-size: 12px;
}

.manage-grid strong {
  display: block;
  margin-top: 4px;
}

.manage-card {
  margin-top: 12px;
}

.manage-card p,
.manage-note {
  color: #475569;
  line-height: 1.5;
}

.manage-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.manage-actions button,
.manage-secondary {
  min-height: 48px;
  border: 1px solid #d6e3f5;
  border-radius: 8px;
  background: #fff;
  color: #1263f1;
  font-weight: 900;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.manage-actions button:disabled {
  color: #94a3b8;
  background: #f8fafc;
}

@media (max-width: 440px) {
  .manage-app {
    box-shadow: none;
  }
}
