/* Quick 1.0 Beta */
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; background: linear-gradient(to bottom, #d7ecff 0%, #2f66c8 100%); }
.topbar { height: 50px; display:flex; align-items:center; justify-content:space-between; padding: 0 12px; background: rgba(255,255,255,0.85); border-bottom: 4px solid violet; }
.topbar .logo { display:flex; align-items:center; gap:10px; }
.topbar .logo .brand { font-weight: bold; color: #1a4fa0; }
.nav a { margin: 0 8px; text-decoration: none; color: #1a4fa0; font-weight: bold; }
.container { width: 80%; margin: 12px auto; display: grid; grid-template-columns: 280px 1fr; gap: 16px; }
.sidebar { background: #fff; padding: 12px; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.content { background: #fff; padding: 12px; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); min-height: 60vh; }
.categories { list-style: none; padding: 0; margin: 0; }
.categories li { margin: 6px 0; }
.rect { display: inline-block; width: 14px; height: 14px; margin-right: 8px; vertical-align: middle; border-radius: 2px; }
.blue { background: #2f66c8; }
.orange { background: #ff7a00; }
.red { background: #e02020; }
.gray { background: #777; }
.footer { position: fixed; bottom: 0; left: 0; right: 0; font-size: 10pt; text-align: center; background: rgba(255,255,255,0.9); padding: 6px; }
.post-form textarea { width: 100%; min-height: 100px; resize: vertical; }
.post-form .row { display:flex; gap: 8px; align-items:center; flex-wrap: wrap;}
.badge { display:inline-block; padding: 2px 6px; border-radius: 6px; font-size: 12px; background:#eee; color:#333; margin-right: 6px; }
.badge.orange { background: #ffe3c2; color: #7a3b00; }
.badge.red { background: #ffd6d6; color: #7a0000; }
.badge.gray { background: #eee; color: #333; }
.post { border-bottom: 1px solid #eee; padding: 10px 0; }
.post .meta { color: #666; font-size: 12px; }
.username { color: #ff7a00; font-weight: bold; }
.flash { padding:8px; border-radius:6px; margin:8px 0; }
.flash.info { background:#e7f0ff; color:#103e8b; }
.flash.error { background:#ffe3e3; color:#7a0000; }
.flash.success { background:#e6ffe6; color:#0a6a0a; }
.install .install-card{ max-width:640px; margin:64px auto; background:#fff; padding:16px; border-radius:10px; box-shadow:0 1px 6px rgba(0,0,0,0.15); }
.ok { color:#0a6a0a; }
.err { color:#7a0000; }
@media (max-width: 900px) {
  .container { width: 95%; grid-template-columns: 1fr; }
  .footer { position: static; }
}
