:root{
  --bd-green:#006a4e;   /* Bangladesh flag green */
  --bd-red:#f42a41;     /* close to flag red */
  --ink:#0b1b14;
  --muted:#52645d;
  --bg:#f6fbf8;
  --card:#ffffff;
  --line:rgba(0,0,0,.08);
  --shadow:0 10px 24px rgba(0,0,0,.08);
  --radius:16px;
  --radius-sm:12px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 300px at 85% 0%, rgba(244,42,65,.10), transparent 60%),
    radial-gradient(900px 300px at 10% 0%, rgba(0,106,78,.12), transparent 60%),
    var(--bg);
}

.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.top{
  position:sticky; top:0; z-index:20;
  background:linear-gradient(to bottom, rgba(246,251,248,.98), rgba(246,251,248,.92));
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}

.flagbar{
  height:6px;
  background:var(--bd-green);
  position:relative;
  overflow:hidden;
}
.flagbar__red{
  position:absolute;
  width:120px; height:120px;
  border-radius:999px;
  background:var(--bd-red);
  top:-56px; left:calc(50% - 60px);
  opacity:.95;
}

.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 0;
}

.brand{display:flex; align-items:center; gap:14px}
.brand__mark{
  width:44px; height:44px; border-radius:999px;
  background:rgba(0,106,78,.10);
  border:1px solid rgba(0,106,78,.25);
  display:grid; place-items:center;
}
.brand__circle{
  width:18px; height:18px; border-radius:999px;
  background:var(--bd-red);
  box-shadow:0 0 0 8px rgba(244,42,65,.12);
}
.brand__text h1{
  margin:0;
  font-size:20px;
  letter-spacing:.2px;
}
.subtitle{
  margin:2px 0 0;
  color:var(--muted);
  font-size:13px;
}

.status{display:flex; align-items:center; justify-content:flex-end}
.pill{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
}
.pill--open{
  border-color:rgba(0,106,78,.25);
  background:rgba(0,106,78,.08);
}
.pill--closed{
  border-color:rgba(244,42,65,.25);
  background:rgba(244,42,65,.08);
}

.main{padding:18px 0 26px}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.intro h2{margin:0 0 10px}
.intro p{margin:8px 0; color:var(--muted)}
.quiet{font-size:13px}

.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:16px;
}
@media (max-width: 900px){
  .top__inner{flex-direction:column; align-items:flex-start}
  .status{width:100%}
  .grid{grid-template-columns: 1fr}
}

h2{
  margin:0 0 14px;
  font-size:18px;
}

.form{display:grid; gap:12px}
.label{display:block; font-size:13px; color:var(--muted); margin-bottom:6px}
input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-size:15px;
}
input:focus{
  outline:none;
  border-color:rgba(0,106,78,.35);
  box-shadow:0 0 0 4px rgba(0,106,78,.12);
}

.hp{position:absolute; left:-9999px; width:1px; height:1px; opacity:0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:12px;
  padding:12px 14px;
  border:1px solid rgba(0,106,78,.25);
  background:linear-gradient(180deg, rgba(0,106,78,.95), rgba(0,106,78,.85));
  color:#fff;
  font-weight:650;
  cursor:pointer;
}
.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}
.btn--ghost{
  background:#fff;
  color:var(--bd-green);
  border:1px solid rgba(0,106,78,.25);
}
.hint{margin:0; color:var(--muted); font-size:13px}

.formResult{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
  border:1px solid var(--line);
}
.formResult.ok{background:rgba(0,106,78,.08); border-color:rgba(0,106,78,.25)}
.formResult.bad{background:rgba(244,42,65,.08); border-color:rgba(244,42,65,.25)}

.approvedHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.listMeta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 0 12px;
}
.count{color:var(--muted); font-size:13px}

.approvedList{display:grid; gap:10px}

.entry{
  display:flex;
  gap:14px;
  padding:14px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.92));
}
.entry:hover{
  border-color:rgba(0,106,78,.25);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.avatar{
  width:56px; height:56px;
  border-radius:999px;
  overflow:hidden;
  flex:0 0 auto;
  border:2px solid rgba(0,106,78,.18);
  background:rgba(0,106,78,.08);
  display:grid; place-items:center;
}
.avatar__img{width:100%; height:100%; object-fit:cover}
.avatar__fallback{
  font-weight:800;
  color:var(--bd-green);
}

.entry__body{min-width:0}
.entry__name{
  font-size:22px; /* BIGGER approved font */
  line-height:1.1;
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:6px;
}
.entry__meta{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:14px;
}
.dot{opacity:.6}

.empty{
  padding:14px;
  color:var(--muted);
  border:1px dashed rgba(0,0,0,.15);
  border-radius:12px;
}

.footer{
  padding:18px 18px 28px;
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Bigger approved list text */
.approvedList--big .entry__name { font-size: 1.25rem; }
.approvedList--big .entry__meta { font-size: 1.05rem; }
.entry--big { padding: 14px 12px; }
