:root{
  --orange:#f28a00; 
  --orange2:#e57f00; 
  --blue:#0b4ea2;
  --line:#f3b267; 
  --gold:#ffd400; 
  --paper:#ffffff; 
  --ink:#0d2b55;
}

html,body{height:100%;}
body{
  margin:0;
  font-family:system-ui,Segoe UI,Roboto,Arial,sans-serif;
  background:#ffffff;
  color:#0d2b55;
}

/* contenitore più compatto */
.topbar{max-width:760px;margin:0 auto;padding:8px 6px;}
.wrap{max-width:760px;margin:0 auto;padding:0 6px 10px;}

.picker{display:flex;align-items:center;gap:8px;font-weight:800;}
.picker input[type="date"]{
  padding:6px 8px;
  border:2px solid #0b4ea2;
  border-radius:14px;
  font-weight:800;
}

.head{
  background:linear-gradient(180deg,var(--orange) 0%,var(--orange2) 100%);
  border-radius:10px 10px 0 0;
  padding:7px 10px;              /* -40% circa */
  color:#ffffff;
}

.h1{
  font-weight:900;
  text-transform:uppercase;
  font-size:15px;                /* più piccolo */
  line-height:1.05;
}

.h2{
  margin-top:4px;
  font-weight:800;
  font-size:11px;
  opacity:.95;
  line-height:1.05;
}

.card{
  border:2px solid var(--line);
  border-top:0;
  border-radius:0 0 10px 10px;
  overflow:hidden;
}

table{width:100%;border-collapse:separate;border-spacing:0;background:#ffffff;}

/* header tabella più basso */
thead th{
  background:var(--orange);
  color:#ffffff;
  font-weight:900;
  padding:6px 5px;               /* -40% circa */
  text-transform:uppercase;
  font-size:12px;                /* più piccolo */
  line-height:1.05;
  border-bottom:6px solid var(--line);  /* meno alto */
}
thead th:first-child{text-align:left;padding-left:10px;}

/* celle numeri più basse */
tbody td{
  background:var(--paper);
  color:var(--ink);
  font-weight:900;
  text-align:center;
  padding:6px 5px;               /* -40% circa */
  font-size:clamp(14px, 3.0vw, 20px);  /* più piccolo */
  line-height:1.05;
  border-bottom:6px solid var(--line);  /* meno alto */
}

/* zebra (escludo il 5°) */
tbody tr:nth-child(even) td:not(.n5){
  background:#ffe7c2;
}

/* ruote più compatte */
td.ruota{
  text-align:left;
  padding-left:10px;
  color:var(--blue);
  font-size:clamp(18px, 2.4vw, 18px);
  white-space:nowrap;
  line-height:1.05;
}

/* 5° estratto sempre oro */
tbody td.n5{
  background:linear-gradient(180deg,var(--gold) 0%, #ffbf00 100%) !important;
  color:#0b2a55 !important;
  -webkit-text-fill-color:#0b2a55 !important;
  border-left:2px solid var(--line);
}

/* fix visibilità iframe/temi */
tbody td{
  opacity:1 !important;
  -webkit-text-fill-color:inherit;
  filter:none !important;
}
