:root { color-scheme: light; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #eef3f4; color: #172026; } * { box-sizing: border-box; } body { margin: 0; } .app-shell { min-height: 100vh; padding: 28px; } .workspace { max-width: 1180px; margin: 0 auto; } .topbar { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 22px; } h1, h2, p { margin: 0; } h1 { font-size: 30px; line-height: 1.15; letter-spacing: 0; } h2 { font-size: 18px; letter-spacing: 0; } .topbar p { max-width: 720px; margin-top: 8px; color: #58656d; } .ghost-link, .download-link, button { min-height: 42px; border-radius: 8px; border: 1px solid #b7c5cc; background: #ffffff; color: #14313f; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; } button { border: 0; background: #0f7788; color: #ffffff; cursor: pointer; } button:disabled { opacity: 0.6; cursor: wait; } .upload-panel, .status-panel, .preview-panel { background: #ffffff; border: 1px solid #d5e0e4; border-radius: 8px; padding: 18px; margin-bottom: 18px; box-shadow: 0 12px 28px rgba(20, 49, 63, 0.06); } .file-drop { display: flex; align-items: center; min-height: 116px; border: 2px dashed #9eb3bc; border-radius: 8px; padding: 20px; cursor: pointer; background: #f7fafb; color: #32444c; font-weight: 700; } .file-drop input { position: absolute; opacity: 0; pointer-events: none; } .control-grid { display: grid; grid-template-columns: minmax(0, 1fr) 180px; gap: 14px; margin: 16px 0; } .control-grid.single { grid-template-columns: minmax(0, 420px); } label span { display: block; margin-bottom: 7px; color: #58656d; font-size: 13px; font-weight: 700; } input[type="url"], input[type="number"], input[type="password"] { width: 100%; min-height: 42px; border: 1px solid #b7c5cc; border-radius: 8px; padding: 0 12px; color: #172026; font: inherit; } .status-head, .preview-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; } .status-head span, .preview-head span { color: #58656d; font-size: 14px; } .progress-track { height: 12px; background: #e3ebef; border-radius: 999px; overflow: hidden; margin: 14px 0 10px; } .progress-bar { width: 0; height: 100%; background: #0f7788; transition: width 220ms ease; } #messageText { color: #32444c; } .job-id { margin-top: 10px; color: #58656d; font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace; font-size: 13px; overflow-wrap: anywhere; } .counter-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0; } .counter-grid span { border: 1px solid #d5e0e4; border-radius: 8px; background: #f7fafb; color: #32444c; font-size: 13px; font-weight: 700; padding: 8px 10px; } .download-actions { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; } .download-link { width: fit-content; } .table-wrap { overflow: auto; margin-top: 14px; border: 1px solid #d5e0e4; border-radius: 8px; } table { width: 100%; min-width: 760px; border-collapse: collapse; } th, td { text-align: left; padding: 12px; border-bottom: 1px solid #e7eef1; vertical-align: top; } th { background: #f2f7f8; color: #32444c; font-size: 13px; } td { color: #172026; font-size: 14px; } .empty { color: #58656d; text-align: center; padding: 28px; } .browser-view { margin-top: 14px; border: 1px solid #d5e0e4; border-radius: 8px; overflow: hidden; background: #f7fafb; } .browser-view img { display: block; width: 100%; height: auto; } .browser-view.tall { min-height: 420px; } @media (max-width: 720px) { .app-shell { padding: 16px; } .topbar, .status-head, .preview-head { align-items: stretch; flex-direction: column; } .control-grid { grid-template-columns: 1fr; } h1 { font-size: 24px; } }