body.msg-page {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: radial-gradient(circle at 10% 10%, #f1f5f9, #ffffff);
  color: #0f172a;
  min-height: 100vh;
}

.msg-modal {
  --msg-bg: #f8fafc;
  --msg-border: #e2e8f0;
  --msg-text: #0f172a;
  --msg-error: #b91c1c;
  --msg-info: #0369a1;
  background: var(--msg-bg);
  color: var(--msg-text);
  font-family: "Georgia", "Times New Roman", serif;
  border: 1px solid var(--msg-border);
  border-radius: 12px;
  padding: 0;
  width: min(520px, 92vw);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
}

.msg-modal::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

.msg-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--msg-border);
}

.msg-header.error {
  background: #fee2e2;
  color: var(--msg-error);
}

.msg-header.info {
  background: #e0f2fe;
  color: var(--msg-info);
}

.msg-body {
  padding: 18px 20px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.msg-actions {
  padding: 16px 20px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.msg-actions button {
  background: #0f172a;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
  cursor: pointer;
}

.msg-actions button:hover {
  background: #111827;
}

.msg-actions .secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.msg-actions .secondary:hover {
  background: #cbd5e1;
}
