:root { --bg:#fafafa; --fg:#151515; --muted:#6b7280; --brand:#2b6cb0; --line:#e5e7eb; }
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--fg);font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif}
.container{max-width:860px;margin:40px auto;padding:0 20px}
h1{margin:0 0 8px}
.sub{margin:0 0 24px;color:var(--muted)}
code{background:#fff;padding:2px 6px;border:1px solid var(--line);border-radius:6px}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;white-space:pre-wrap;border:1px solid var(--line);background:#fff;border-radius:12px;padding:12px;margin-top:16px}
.dropzone{border:2px dashed var(--line);border-radius:14px;padding:28px;text-align:center;background:#fff}
.dropzone.dragover{background:#f8fafc;border-color:#cbd5e1}
input[type=file]{display:none}
.link{color:var(--brand);text-decoration:underline;cursor:pointer}
.files{margin-top:16px;display:flex;flex-direction:column;gap:10px}
.row{display:grid;grid-template-columns:1fr 1fr auto;gap:10px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:12px;padding:10px}
.row-left{min-width:0}
.name{font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.meta{color:var(--muted);font-size:12px}
.progress{height:10px;background:#f1f5f9;border-radius:999px;overflow:hidden}
.bar{height:100%;width:0% ;background:var(--brand)}
.actions{margin-top:14px;display:flex;gap:8px}
button{padding:.6rem 1rem;border:0;border-radius:10px;background:#111;color:#fff;cursor:pointer}
button:disabled{background:#a3a3a3;cursor:not-allowed}
.remove{background:#e11d48}
.login-box {
  margin-top: 60px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 400px;           /* ⬅ smaller width */
  font-size: 13px;
}

.login-box h3 {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 600;
}

.login-box input {
  width: 100%;
  padding: 10px 12px;       /* ⬅ smaller padding */
  margin-bottom: 6px;
  font-size: 12px;
}

.login-box button {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  cursor: pointer;
}

.login-box .status {
  margin-top: 8px;
  font-size: 11px;
  min-height: 14px;       /* avoids layout jump */
}

