/* ============================================================
   RodoWall PAD — Dashboard
   ------------------------------------------------------------
   Cartões de gráficos, lista de top motoristas e indicadores.
   ============================================================ */

/* DASH */
.dash-grid{display:grid;gap:14px;grid-template-columns:1fr 1fr;}
.dash-card{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:18px;box-shadow:0 1px 3px rgba(0,0,0,.2);}
.dash-card.full{grid-column:1/-1;}
.dc-title{font-family:"Montserrat";font-size:14px;letter-spacing:1px;color:var(--text2);margin-bottom:14px;}
.dc-title b{color:var(--navy);}
.chart-wrap{position:relative;height:200px;}
.chart-wrap.tall{height:240px;}
.top-list{display:flex;flex-direction:column;gap:7px;}
.top-item{display:flex;align-items:center;gap:8px;}
.top-rank{font-family:"Montserrat";font-size:16px;color:var(--text3);width:18px;text-align:center;flex-shrink:0;}
.top-name{flex:1;font-size:12px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.top-bw{width:80px;background:var(--surface2);border-radius:3px;height:4px;flex-shrink:0;}
.top-bf{height:100%;border-radius:3px;}
.top-pts{font-family:"JetBrains Mono";font-size:11px;font-weight:700;width:30px;text-align:right;flex-shrink:0;}
.rc-chip{display:inline-block;padding:2px 8px;border-radius:20px;font-size:10px;font-weight:700;}
.rc-l{background:var(--green-dim);color:var(--green);}
.rc-m{background:var(--orange-dim);color:var(--orange);}
.rc-h{background:var(--red-dim);color:var(--red);}
