/* ═══════════════════════════════════════════
   PMS — REPORT
   ═══════════════════════════════════════════ */
.rpt-empty{text-align:center;color:rgba(255,255,255,.3);padding:40px 0;font-size:.85rem}

/* ─── Project Progress Items ─── */
.rpt-progress-item{margin-bottom:18px}
.rpt-progress-item:last-child{margin-bottom:0}
.rpt-progress-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.rpt-progress-name{font-size:.84rem;font-weight:600;color:rgba(255,255,255,.85)}
.rpt-progress-bar-wrap{display:flex;align-items:center;gap:12px}
.rpt-progress-bar{flex:1;height:10px;background:rgba(255,255,255,.06);border-radius:6px;overflow:hidden}
.rpt-progress-fill{height:100%;border-radius:6px;transition:width .8s cubic-bezier(.4,0,.2,1)}
.rpt-progress-pct{font-size:.78rem;font-weight:700;color:rgba(255,255,255,.6);min-width:40px;text-align:right;font-family:var(--en)}

/* ─── Donut Chart (CSS only) ─── */
.rpt-donut-wrap{display:flex;justify-content:center;margin-bottom:24px}
.rpt-donut{
  width:140px;height:140px;border-radius:50%;
  background:conic-gradient(var(--color) calc(var(--pct) * 1%), rgba(255,255,255,.06) 0);
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.rpt-donut-inner{
  width:100px;height:100px;border-radius:50%;
  background:var(--card-bg,#16161e);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.rpt-donut-value{font-size:1.5rem;font-weight:800;color:rgba(255,255,255,.9);font-family:var(--en);line-height:1.2}
.rpt-donut-label{font-size:.7rem;color:rgba(255,255,255,.4)}

/* ─── Stat Grid ─── */
.rpt-stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.rpt-stat-item{
  display:flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:8px;
  background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.04);
}
.rpt-stat-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.rpt-stat-name{font-size:.78rem;color:rgba(255,255,255,.5);flex:1}
.rpt-stat-val{font-size:.88rem;font-weight:800;font-family:var(--en);color:rgba(255,255,255,.85)}

@media(max-width:768px){.rpt-stat-grid{grid-template-columns:repeat(2,1fr);gap:10px}}
@media(max-width:420px){.rpt-stat-grid{grid-template-columns:1fr}}
