:root{
  --p:#072C49;      /* primary */
  --s:#9DDAE5;      /* secondary */
  --bg:#ECE6DD;     /* background */
  --w:#fff;
  --muted: rgba(7,44,73,.65);
  --line: rgba(7,44,73,.12);
  --shadow: 0 14px 30px rgba(7,44,73,.10);
  --r: 16px;
  --r2: 12px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--p);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.qgi-wrap{
  padding:18px;
  max-width: 1240px;
  margin: 0 auto;
}

.qgi-head{
  display:flex;
  gap:12px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.qgi-title h1{
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
      padding: 10px;
}

.qgi-sub{
  color:var(--muted);
  font-size:13px;
  margin-top:6px;
}

.qgi-search{
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  min-width:260px;
  background:#fff;
  outline:none;
    border: 2px solid #ece6dd;
}
.qgi-search:focus{
  border-color: rgba(7,44,73,.25);
  box-shadow: 0 0 0 4px rgba(157,218,229,.35);

}

.qgi-card{
  background:var(--w);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:14px;
  border: 2px solid #ece6dd;

}

.qgi-kpis{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
  margin-bottom:14px;
}

.qgi-kpi{
  padding:14px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  border: 2px solid #ece6dd;

}

.qgi-kpi .t{
  color:var(--muted);
  font-size:12px;
  margin-bottom:8px;
}
.qgi-kpi .v{
  font-size:20px;
  font-weight:800;
}
.qgi-kpi .s{
  margin-top:8px;
  height:8px;
  background:rgba(157,218,229,.35);
  border-radius:999px;
  overflow:hidden;
}
.qgi-kpi .s > div{
  height:100%;
  background:var(--p);
  width:0;
  border-radius:999px;
}

.qgi-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:14px;
}

.qgi-prog{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0;
}
.qgi-prog .lbl{
  min-width:110px;
  color:var(--muted);
  font-size:13px;
}
.qgi-prog .bar{
  flex:1;
  height:10px;
  background:rgba(157,218,229,.35);
  border-radius:999px;
  overflow:hidden;
}
.qgi-prog .bar > div{
  height:100%;
  background:var(--p);
  width:0;
  border-radius:999px;
}
.qgi-prog .pct{
  width:64px;
  text-align:left;
  font-weight:800;
}

.qgi-table-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.qgi-mini{
  color:var(--muted);
  font-size:12px;
}

.qgi-table-wrap{
  overflow:auto;
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:var(--r2);
}

.qgi-table{
  width:100%;
  border-collapse:collapse;
  min-width:900px;
}
.qgi-table th, .qgi-table td{
  padding:10px 10px;
  border-bottom:1px solid var(--line);
  font-size:13px;
  white-space:nowrap;
}
.qgi-table th{
  position:sticky;
  top:0;
  background:#fff;
  z-index:1;
  text-align:right;
  cursor:pointer;
}
.qgi-table tr:hover td{
  background: rgba(157,218,229,.18);
}

.qgi-footnote{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
}

/* Responsive */
@media (max-width: 900px){
  .qgi-kpis{ grid-template-columns: repeat(2, 1fr); }
  .qgi-grid{ grid-template-columns: 1fr; }
  .qgi-search{ width:100%; min-width: unset; }
  .qgi-logo{ height: 56px; }
}
.qgi-title--center{
  width: 100%;
  text-align: center;
}
.qgi-logo{
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}
body{
    background-color: color(srgb 0.87 0.9797 1) 
}
#note{
  display:none;
}

/* فرع الشمال */
.qgi-title--center{ width:100%; text-align:center; }

.qgi-tracks{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  margin-top:12px;
}

.qgi-track{
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:12px;
  background:#fff;
}

.qgi-track h4{
  margin:0 0 10px;
  font-size:16px;
}

.qgi-level{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed var(--line);
}

.qgi-level h5{
  margin:0 0 10px;
  font-size:14px;
  color: var(--p);
}

.qgi-rooms{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.qgi-room{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px;
  background:#fff;
}

.qgi-room-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.qgi-room-title{
  font-weight:800;
}

.qgi-room-percent{
  font-weight:900;
  color: var(--p);
}

.qgi-room-bar{
  height:10px;
  background: rgba(157,218,229,.35);
  border-radius: 999px;
  overflow:hidden;
}

.qgi-room-bar > div{
  height:100%;
  background: var(--p);
  width:0%;
  border-radius: 999px;
}

.qgi-room-meta{
  margin-top:8px;
  color: var(--muted);
  font-size:12px;
  line-height:1.6;
}

@media (max-width: 900px){
  .qgi-rooms{ grid-template-columns: 1fr; }
}
