/* Basic CSS theme on top of Tailwind */
:root{
  --brand:#0f172a;
  --accent:#111827;
  --muted:#64748b;
}
.container{max-width:1100px;margin:0 auto;padding:0 1rem;}
.brand{font-weight:800;letter-spacing:.2px;font-size:1.1rem;color:var(--brand)}
.link{color:var(--accent);text-decoration:underline}
.h1{font-size:1.5rem;font-weight:800}
.h2{font-size:1.1rem;font-weight:700}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:24px;box-shadow:0 6px 20px rgba(0,0,0,.04)}
.subcard{background:#fff;border:1px solid #eef2f7;border-radius:12px;padding:16px}
.row{display:flex;align-items:center;justify-content:space-between;padding:16px;border:1px solid #e5e7eb;border-radius:12px;background:#fff}
.subrow{padding:12px;border:1px dashed #e5e7eb;border-radius:12px}
.badge{background:#f3f4f6;border-radius:999px;padding:2px 8px;font-size:.75rem}
.badges>*{margin-left:.5rem}
/* Pollu statusa badge krāsas */
.badge-success {background: #dcfce7;color: #166534;}
.badge-danger {background: #fee2e2;color: #b91c1c;}
/* Aptauju kartīšu vizuāls stāvoklis: balsojis / nebalsojis */
.poll-voted {border-left: 4px solid #16a34a;}
.poll-not-voted {border-left: 4px solid #dc2626;}
.poll-voted { border-left: 4px solid #16a34a; background: #f0fdf4;}
.poll-not-voted {border-left: 4px solid #dc2626;background: #fef2f2;}
.muted{color:var(--muted)}
.btn{padding:.6rem 1rem;background:#000;color:#fff;border-radius:10px;box-shadow:0 8px 20px rgba(0,0,0,.06);}
.btn:hover{opacity:.9}
.btn-secondary{padding:.6rem 1rem;background:#e5e7eb;border-radius:10px}
.btn-danger{padding:.6rem 1rem;background:#dc2626;color:#fff;border-radius:10px;border:1px solid #b91c1c;box-shadow:0 8px 20px rgba(0,0,0,.06);}
.btn-danger:hover{background:#b91c1c;}
.btn-outline{padding:.4rem .8rem;border:1px solid #e5e7eb;border-radius:10px}
.input{width:100%;padding:.6rem .8rem;border:1px solid #e5e7eb;border-radius:10px}
.file{padding:.4rem .6rem;border:1px dashed #e5e7eb;border-radius:10px;background:#fafafa}
.label{display:block;font-weight:600;margin:.1rem 0}
.qr{width:128px;height:128px;border:1px solid #e5e7eb;border-radius:8px}
.thumb{width:220px;max-width:100%;border-radius:10px;border:1px solid #e5e7eb}
.thumb-xs{width:44px;height:44px;object-fit:cover;border-radius:8px;border:1px solid #e5e7eb}
.question-img{width:100%;max-width:480px;border-radius:12px;border:1px solid #e5e7eb;margin:.25rem 0}
.option-row{display:flex;align-items:center;gap:.5rem}
.option-img{width:44px;height:44px;object-fit:cover;border-radius:8px;border:1px solid #e5e7eb}
.bar{width:100%;height:10px;background:#e5e7eb;border-radius:999px;overflow:hidden}
.bar-fill{height:10px;background:#000}
.bg-pattern{background:
 radial-gradient(ellipse at 10% 10%, rgba(0,0,0,.02), transparent 60%),
 radial-gradient(ellipse at 90% 10%, rgba(0,0,0,.02), transparent 60%),
 radial-gradient(ellipse at 10% 90%, rgba(0,0,0,.02), transparent 60%),
 radial-gradient(ellipse at 90% 90%, rgba(0,0,0,.02), transparent 60%);
}