/* Temp Inbox public UI v0.1.1 */
:root { color-scheme: dark; font-family: system-ui, -apple-system, Segoe UI, sans-serif; color: #f7f8ff; background: #0b0d16; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: grid; place-items: center; padding: 20px; background: radial-gradient(circle at 20% 10%, #243261, transparent 35%), #0b0d16; }
.card { width: min(760px, 100%); padding: clamp(24px, 5vw, 52px); border: 1px solid #303a5d; border-radius: 24px; background: rgba(18, 23, 42, .94); box-shadow: 0 24px 90px rgba(0, 0, 0, .42); }
.eyebrow { color: #8fa9ff; font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
h1 { margin: 12px 0; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; }
.lede { color: #bdc5de; line-height: 1.6; }
button { border: 0; border-radius: 12px; padding: 12px 18px; color: #081022; background: #9db4ff; font-weight: 800; cursor: pointer; }
button:disabled { cursor: wait; opacity: .6; }
.secondary { color: #dbe3ff; background: #2a355b; }
.result { margin-top: 30px; padding: 20px; border: 1px solid #3b4a77; border-radius: 16px; background: #11182f; }
label { display: block; color: #aab7de; font-size: .9rem; margin-bottom: 8px; }
.address-row { display: flex; gap: 10px; align-items: center; }
code { min-width: 0; overflow-wrap: anywhere; flex: 1; color: #fff; font-size: 1rem; }
.timer { color: #9db4ff; font-weight: 800; }
.messages { display: grid; gap: 12px; margin-top: 20px; }
.message { padding: 16px; border-radius: 12px; background: #192140; }
.message-meta { display: flex; justify-content: space-between; gap: 12px; }
.message-meta span, .from, .empty, .attachment-note, footer, .status { color: #9ca8c9; font-size: .86rem; }
pre { white-space: pre-wrap; overflow-wrap: anywhere; font: inherit; line-height: 1.5; color: #e9edff; }
footer { margin-top: 30px; line-height: 1.5; }
.status { min-height: 1.4em; margin-top: 14px; }
@media (max-width: 560px) { .address-row, .message-meta { align-items: stretch; flex-direction: column; } }
