:root{
  --bg:#f7f9fb;
  --card:#fff;
  --line:#e4e9ef;
  --text:#142132;
  --muted:#7c8998;
  --red:#e10600;
  --green:#15945f;
  --blue:#4b82c3;
  --yellow:#f4c430;
  --orange:#ff9800;
}
*{box-sizing:border-box}
html,body{margin:0;width:100%;height:100%;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text)}
body{overflow:hidden}

.shell{
  height:100vh;
  padding:10px;
  display:grid;
  grid-template-rows:82px 34px minmax(0,1fr) 240px;
  gap:10px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:12px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:15px;
  box-shadow:0 5px 15px rgba(16,24,32,.045);
}
.eyebrow{font-size:8px;font-weight:800;letter-spacing:.75px;color:#8b96a3;margin-bottom:3px}
.title-row{display:flex;align-items:center;gap:9px}
h1{margin:0;font-size:22px;line-height:1.05}
.subtle{font-size:10px;color:var(--muted);margin-top:4px}
.pill{height:21px;padding:0 8px;display:inline-flex;align-items:center;border-radius:8px;font-size:8px;font-weight:900}
.pill.live{background:var(--red);color:#fff}
.pill.idle{background:#edf5fd;color:var(--blue)}

.weather{display:grid;grid-template-columns:repeat(4,90px);align-items:center}
.weather>div{padding:8px 12px;border-left:1px solid #edf0f3}
.weather span{display:block;font-size:8px;color:#8994a1}
.weather b{display:block;margin-top:2px;font-size:13px}

.alertbar{
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  grid-template-columns:34px minmax(230px,.55fr) minmax(0,1.45fr);
  align-items:center;
  overflow:hidden;
}
.flag-icon{height:100%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:900}
.flag-text{display:flex;align-items:center;gap:10px;padding:0 12px;min-width:0}
.flag-text strong{font-size:10px}
.flag-text span,.fia-box span{
  font-size:9px;color:#687586;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.fia-box{
  height:100%;display:flex;align-items:center;gap:10px;padding:0 12px;
  border-left:1px solid rgba(0,0,0,.07);min-width:0;
}
.fia-box strong{
  font-size:9px;padding:4px 7px;border-radius:7px;background:#172536;color:#fff;
}
.alertbar.clear .flag-icon{background:#eaf7f0;color:#14915d}
.alertbar.clear{background:#fff;border-color:var(--line)}
.alertbar.yellow{background:#fff9dd;border-color:#efd75f}
.alertbar.yellow .flag-icon{background:#f5cf32;color:#111}
.alertbar.double-yellow{background:#fff4c4;border-color:#e6c218}
.alertbar.double-yellow .flag-icon{background:repeating-linear-gradient(135deg,#f4cf24 0 8px,#ffe97e 8px 16px);color:#111}
.alertbar.redflag{background:#fff0f0;border-color:#e10600}
.alertbar.redflag .flag-icon{background:#e10600;color:#fff}
.alertbar.sc{background:#fff8e8;border-color:#f0a536}
.alertbar.sc .flag-icon{background:#ffb72b;color:#111}
.alertbar.chequered{background:#f7f7f7;border-color:#aab5c2}
.alertbar.chequered .flag-icon{
  background:
    linear-gradient(45deg,#111 25%,transparent 25%,transparent 75%,#111 75%),
    linear-gradient(45deg,#111 25%,transparent 25%,transparent 75%,#111 75%);
  background-size:14px 14px;
  background-position:0 0,7px 7px;
  color:#fff;
}

.main-grid{min-height:0;display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:10px}
.card{
  background:#fff;border:1px solid var(--line);border-radius:15px;
  box-shadow:0 5px 15px rgba(16,24,32,.045);overflow:hidden;min-height:0;
}
.card-head{
  height:34px;padding:0 10px;display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid #edf0f3;
}
.card-head>div:first-child{display:flex;align-items:center;gap:8px}
.card-head strong{font-size:11px}
.card-head span{font-size:8px;color:#8a96a4}
.card-head.red strong{color:#e10600}
.badge{
  font-size:7px;font-weight:800;padding:4px 7px;border-radius:9px;background:#eef4fb;color:#4b82c3;
}

.track-card{display:flex;flex-direction:column}
.map-wrap{
  position:relative;flex:1;min-height:0;
  background:radial-gradient(circle at 65% 45%,rgba(75,130,195,.03),transparent 48%),#fff;
}
#track-svg{width:100%;height:100%;display:block}
.empty-overlay{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:5px;color:#8491a0;text-align:center;pointer-events:none;
}
.empty-overlay.hidden{display:none}
.empty-overlay strong{font-size:12px;color:#596777}
.empty-overlay span{font-size:9px;max-width:390px}
.empty-icon{font-size:28px;color:#b3bcc6}

.grid-overlay{
  position:absolute;inset:0;overflow:hidden;padding:12px 14px 14px;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.96));
}
.grid-overlay.hidden{display:none}
.grid-layout{
  display:grid;grid-template-columns:minmax(420px,540px) minmax(0,1fr);gap:18px;height:100%;
}
.grid-board{
  display:grid;grid-template-rows:repeat(11,minmax(0,1fr));gap:4px;align-content:start;min-height:0;
}
.grid-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;min-height:0}
.grid-slot{
  position:relative;display:flex;align-items:center;gap:8px;
  min-height:34px;padding-left:22px;
}
.grid-pos{
  position:absolute;left:0;top:2px;font-size:11px;font-weight:900;line-height:1;color:#111;
}
.grid-bracket{
  width:12px;height:28px;border-left:4px solid #111;border-top:4px solid #111;border-bottom:4px solid #111;flex:0 0 auto;
}
.grid-avatar,.grid-avatar-fallback{
  width:28px;height:28px;border-radius:50%;flex:0 0 auto;
}
.grid-avatar{object-fit:cover;background:#600;box-shadow:0 2px 4px rgba(0,0,0,.12)}
.grid-avatar-fallback{
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:9px;font-weight:900;
}
.grid-meta{min-width:0;display:flex;flex-direction:column;gap:1px}
.grid-code{font-size:9px;font-weight:900;letter-spacing:.2px;line-height:1.1}
.grid-name{font-size:7px;color:#586677;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.1}
.grid-team{font-size:6px;color:#8893a0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.1}

.grid-side{
  position:relative;min-height:0;border-left:1px dashed #edf0f3;padding-left:14px;
}
.grid-side-top{
  display:flex;align-items:center;justify-content:space-between;margin-bottom:8px;
}
.grid-side-title{font-size:10px;font-weight:800;color:#142132}
.grid-side-sub{font-size:8px;color:#7e8a97}
.grid-track-holder{
  position:absolute;inset:36px 10px 10px 14px;
  display:flex;align-items:center;justify-content:center;pointer-events:none;
}
.grid-info-card{
  position:absolute;right:12px;bottom:12px;width:220px;max-width:42%;
  background:rgba(255,255,255,.9);backdrop-filter:blur(3px);
  border:1px solid #e8edf3;border-radius:12px;padding:10px 12px;
  box-shadow:0 4px 12px rgba(16,24,32,.05);
}
.grid-info-card h3{
  margin:0 0 8px 0;font-size:11px;line-height:1.1;
}
.grid-info-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:8px 12px;
}
.grid-info-item span{display:block;font-size:7px;color:#8b96a3;text-transform:uppercase;letter-spacing:.4px}
.grid-info-item b{display:block;margin-top:2px;font-size:10px;color:#142132}
.grid-note{margin-top:8px;font-size:8px;color:#6f7b88;line-height:1.3}

.car-dot{transition:transform .22s linear}
.car-circle{stroke:#fff;stroke-width:3;filter:drop-shadow(0 2px 3px rgba(0,0,0,.2))}
.car-label{font-size:18px;font-weight:900;paint-order:stroke;stroke:#fff;stroke-width:5px;stroke-linejoin:round}

.standings{min-height:0;display:grid;grid-template-rows:1fr 1fr;gap:10px}
.standing-card{display:flex;flex-direction:column}
.standing-list{flex:1;min-height:0;overflow:auto;padding:0 9px 6px}
.st-row{
  height:21px;display:grid;align-items:center;gap:5px;border-bottom:1px solid #f0f2f4;font-size:8px;
}
.st-row.driver{grid-template-columns:18px 4px 34px 1fr 34px 34px}
.st-row.team{grid-template-columns:18px 4px 1fr 34px 34px}
.st-row>b{font-size:8px}
.st-row .bar{height:11px;border-radius:2px}
.st-row strong,.st-row span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.st-row strong{font-size:7px}
.st-row span{font-size:7px;color:#586777}
.st-row em,.st-row small{font-style:normal;text-align:right}
.st-row small{color:#7d8997;font-size:7px}
.st-empty{height:100%;display:flex;align-items:center;justify-content:center;color:#8491a0;font-size:9px}

.timing-card{display:flex;flex-direction:column}
.table-wrap{height:calc(100% - 34px);overflow:auto}
table{width:100%;border-collapse:collapse;table-layout:fixed}
thead th{
  position:sticky;top:0;z-index:2;height:24px;padding:0 7px;background:#fafbfd;color:#8a96a4;
  border-bottom:1px solid #edf0f3;text-align:left;font-size:6.5px;text-transform:uppercase;
}
tbody td{
  height:22px;padding:0 7px;border-bottom:1px solid #f0f2f4;font-size:8px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.pos{font-weight:800;font-size:9px}
.driver-cell{display:flex;align-items:center;gap:6px}
.team-bar{width:4px;height:14px;border-radius:2px;flex:0 0 auto}
.driver-code{font-weight:800;font-size:9px}
.tyre{
  display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:14px;
  border-radius:8px;border:1px solid #d9dee5;font-size:6px;font-weight:900;
}
.tyre.S{color:#e33b42}
.tyre.M{color:#d0a900}
.tyre.H{color:#6f7780}
.tyre.I{color:#15945f}
.tyre.W{color:#2f73d0}
.loading{text-align:center;color:#8491a0;height:60px}

body.embed .shell{
  padding:4px;
  gap:6px;
  grid-template-rows:46px 26px minmax(0,1fr) 132px;
}
body.embed .topbar{padding:6px 10px;border-radius:12px}
body.embed .eyebrow{font-size:7px}
body.embed h1{font-size:16px}
body.embed .subtle{font-size:8px;margin-top:2px}
body.embed .pill{height:18px;font-size:7px;padding:0 6px}
body.embed .weather{grid-template-columns:repeat(4,62px)}
body.embed .weather>div{padding:3px 7px}
body.embed .weather span{font-size:7px}
body.embed .weather b{font-size:10px}

body.embed .alertbar{grid-template-columns:24px minmax(140px,.62fr) minmax(0,1.38fr);border-radius:10px}
body.embed .flag-icon{font-size:12px}
body.embed .flag-text{padding:0 8px;gap:6px}
body.embed .flag-text strong{font-size:8px}
body.embed .flag-text span,body.embed .fia-box span{font-size:7px}
body.embed .fia-box{padding:0 8px;gap:6px}
body.embed .fia-box strong{font-size:7px;padding:3px 6px}

body.embed .main-grid{grid-template-columns:minmax(0,1fr) 190px;gap:6px}
body.embed .standings{gap:6px}
body.embed .card{border-radius:12px}
body.embed .card-head{height:28px;padding:0 8px}
body.embed .card-head strong{font-size:9px}
body.embed .card-head span{font-size:7px}
body.embed .badge{font-size:6px;padding:3px 6px}

body.embed .grid-overlay{padding:8px 9px 10px}
body.embed .grid-layout{grid-template-columns:minmax(295px,360px) minmax(0,1fr);gap:10px}
body.embed .grid-board{gap:2px}
body.embed .grid-row{gap:6px}
body.embed .grid-slot{min-height:26px;padding-left:18px;gap:6px}
body.embed .grid-pos{font-size:8px;top:1px}
body.embed .grid-bracket{width:9px;height:22px;border-left-width:3px;border-top-width:3px;border-bottom-width:3px}
body.embed .grid-avatar,body.embed .grid-avatar-fallback{width:22px;height:22px}
body.embed .grid-avatar-fallback{font-size:7px}
body.embed .grid-code{font-size:7px}
body.embed .grid-name{font-size:6px}
body.embed .grid-team{font-size:5px}
body.embed .grid-side{padding-left:8px}
body.embed .grid-side-top{margin-bottom:4px}
body.embed .grid-side-title{font-size:8px}
body.embed .grid-side-sub{font-size:6px}
body.embed .grid-track-holder{inset:20px 8px 6px 8px}
body.embed .grid-info-card{
  width:145px;max-width:45%;right:8px;bottom:8px;padding:7px 8px;border-radius:10px;
}
body.embed .grid-info-card h3{font-size:8px;margin-bottom:5px}
body.embed .grid-info-grid{gap:5px 8px}
body.embed .grid-info-item span{font-size:5px}
body.embed .grid-info-item b{font-size:7px}
body.embed .grid-note{font-size:6px;margin-top:5px}

body.embed .empty-overlay strong{font-size:9px}
body.embed .empty-overlay span{font-size:7px}
body.embed .car-label{font-size:12px}
body.embed .standings .standing-list{padding:0 6px 3px}
body.embed .st-row{height:18px;font-size:6px}
body.embed .st-row.driver{grid-template-columns:14px 4px 24px 1fr 24px 26px}
body.embed .st-row.team{grid-template-columns:14px 4px 1fr 24px 26px}
body.embed .st-row>b{font-size:7px}
body.embed .st-row strong,.body.embed .st-row span{font-size:6px}
body.embed .table-wrap{height:calc(100% - 28px)}
body.embed thead th{height:19px;font-size:5.5px;padding:0 5px}
body.embed tbody td{height:18px;font-size:6px;padding:0 5px}
body.embed .pos{font-size:7px}
body.embed .driver-code{font-size:7px}
body.embed .team-bar{height:10px}
body.embed .tyre{height:12px;min-width:15px;font-size:5px}

@media(max-width:1000px){
  body{overflow:auto}
  .shell{height:auto;grid-template-rows:auto auto 650px 320px}
  .main-grid{grid-template-columns:1fr}
  .standings{grid-template-columns:1fr 1fr;grid-template-rows:1fr}
  .grid-layout{grid-template-columns:1fr}
}

/* =========================================================
   v8 – Startaufstellung kompakt + Streckenpanel sichtbar
   ========================================================= */

.grid-layout{
  grid-template-columns:minmax(360px,470px) minmax(0,1fr) !important;
  gap:14px !important;
}

.grid-board{
  display:grid !important;
  grid-template-rows:repeat(11,36px) !important;
  gap:3px !important;
  align-content:start !important;
  justify-content:start !important;
  height:auto !important;
}

.grid-row{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:10px !important;
  min-height:36px !important;
  height:36px !important;
}

.grid-slot{
  min-height:36px !important;
  height:36px !important;
  padding-left:18px !important;
  gap:6px !important;
}

.grid-pos{
  top:1px !important;
  font-size:9px !important;
}

.grid-bracket{
  width:10px !important;
  height:28px !important;
  border-left-width:3px !important;
  border-top-width:3px !important;
  border-bottom-width:3px !important;
}

.grid-avatar,
.grid-avatar-fallback{
  width:28px !important;
  height:28px !important;
}

.grid-code{font-size:8px !important}
.grid-name{font-size:6.5px !important}
.grid-team{font-size:5.5px !important}

.grid-side{
  position:relative !important;
  min-height:0 !important;
  padding-left:14px !important;
  border-left:1px dashed #e8edf2 !important;
  overflow:hidden !important;
}

.grid-track-holder{
  position:absolute !important;
  left:20px !important;
  right:20px !important;
  top:48px !important;
  bottom:118px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.circuit-svg{
  width:100% !important;
  height:100% !important;
  max-width:680px !important;
  max-height:360px !important;
  overflow:visible !important;
}

.circuit-svg path.track{
  fill:none;
  stroke:#1e2732;
  stroke-width:12;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.circuit-svg path.inner{
  fill:none;
  stroke:#ffffff;
  stroke-width:7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.circuit-svg .start{
  stroke:#11cfe3;
  stroke-width:8;
}

.circuit-label{
  font-size:22px;
  font-weight:800;
  fill:#8a96a4;
  letter-spacing:1px;
}

.grid-info-card{
  width:260px !important;
  max-width:48% !important;
  right:12px !important;
  bottom:12px !important;
  padding:10px 12px !important;
}

.grid-side-top{
  position:relative;
  z-index:2;
}

/* Embed: alle 11 Startreihen sichtbar, ohne vertikales Strecken */
body.embed .grid-layout{
  grid-template-columns:minmax(260px,320px) minmax(0,1fr) !important;
  gap:8px !important;
}

body.embed .grid-board{
  grid-template-rows:repeat(11,27px) !important;
  gap:2px !important;
}

body.embed .grid-row{
  min-height:27px !important;
  height:27px !important;
  gap:5px !important;
}

body.embed .grid-slot{
  min-height:27px !important;
  height:27px !important;
  padding-left:14px !important;
  gap:4px !important;
}

body.embed .grid-pos{
  font-size:7px !important;
}

body.embed .grid-bracket{
  width:8px !important;
  height:21px !important;
  border-left-width:2.5px !important;
  border-top-width:2.5px !important;
  border-bottom-width:2.5px !important;
}

body.embed .grid-avatar,
body.embed .grid-avatar-fallback{
  width:21px !important;
  height:21px !important;
}

body.embed .grid-code{font-size:6.5px !important}
body.embed .grid-name{font-size:5.3px !important}
body.embed .grid-team{font-size:4.7px !important}

body.embed .grid-side{
  padding-left:8px !important;
}

body.embed .grid-track-holder{
  left:8px !important;
  right:8px !important;
  top:28px !important;
  bottom:78px !important;
}

body.embed .grid-info-card{
  width:170px !important;
  max-width:50% !important;
  right:7px !important;
  bottom:7px !important;
  padding:6px 7px !important;
}

body.embed .grid-info-card h3{
  font-size:7.5px !important;
  margin-bottom:4px !important;
}

body.embed .grid-info-item span{font-size:4.8px !important}
body.embed .grid-info-item b{font-size:6.3px !important}
body.embed .grid-note{font-size:5.3px !important}

/* timing in HA sichtbar halten */
body.embed .shell{
  grid-template-rows:44px 24px minmax(0,1fr) 118px !important;
}
body.embed .timing-card .card-head{
  height:24px !important;
}
body.embed .table-wrap{
  height:calc(100% - 24px) !important;
}
body.embed thead th{
  height:17px !important;
}
body.embed tbody td{
  height:16px !important;
}


/* =========================================================
   v9 – Startgrid wieder groß/kompakt, Linie OBEN,
        korrekte Monza-Strecke, nicht mehr mini
   ========================================================= */

.grid-layout{
  grid-template-columns:560px minmax(0,1fr) !important;
  gap:18px !important;
}
.grid-board{
  grid-template-rows:repeat(11,44px) !important;
  gap:4px !important;
  align-content:start !important;
  height:auto !important;
}
.grid-row{
  grid-template-columns:1fr 1fr !important;
  gap:14px !important;
  height:44px !important;
  min-height:44px !important;
}
.grid-slot{
  position:relative !important;
  height:44px !important;
  min-height:44px !important;
  padding:13px 8px 2px 28px !important;
  gap:8px !important;
  overflow:visible !important;
}
.grid-bracket{display:none !important}

/* Linie oben wie in deiner Vorlage */
.grid-slot::before{
  content:"";
  position:absolute;
  left:24px;
  right:6px;
  top:5px;
  height:9px;
  border-top:4px solid #111;
  border-left:4px solid #111;
  border-right:4px solid #111;
  pointer-events:none;
}
.grid-pos{
  position:absolute !important;
  left:0 !important;
  top:1px !important;
  font-size:11px !important;
  font-weight:900 !important;
  z-index:2;
}
.grid-avatar,.grid-avatar-fallback{
  width:31px !important;
  height:31px !important;
}
.grid-code{font-size:9px !important;line-height:1.05 !important}
.grid-name{font-size:7px !important;line-height:1.05 !important}
.grid-team{font-size:6px !important;line-height:1.05 !important}

.grid-side{
  padding-left:18px !important;
  border-left:1px dashed #e7ebf0 !important;
}
.grid-track-holder{
  position:absolute !important;
  left:28px !important;
  right:28px !important;
  top:42px !important;
  bottom:110px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.track-image{
  display:block;
  width:82%;
  height:82%;
  max-width:760px;
  max-height:430px;
  object-fit:contain;
  filter:contrast(1.1);
}
.grid-info-card{
  width:300px !important;
  max-width:48% !important;
  right:14px !important;
  bottom:14px !important;
  padding:11px 13px !important;
}
.grid-info-card h3{font-size:11px !important;margin:0 0 8px 0 !important}
.grid-info-item span{font-size:7px !important}
.grid-info-item b{font-size:10px !important}
.grid-note{font-size:7px !important}

/* Embed: lesbar statt winzig */
body.embed .grid-layout{
  grid-template-columns:470px minmax(0,1fr) !important;
  gap:12px !important;
}
body.embed .grid-board{
  grid-template-rows:repeat(11,37px) !important;
  gap:3px !important;
}
body.embed .grid-row{
  height:37px !important;
  min-height:37px !important;
  gap:9px !important;
}
body.embed .grid-slot{
  height:37px !important;
  min-height:37px !important;
  padding:11px 6px 2px 24px !important;
  gap:6px !important;
}
body.embed .grid-slot::before{
  left:20px !important;
  right:5px !important;
  top:4px !important;
  height:8px !important;
  border-top-width:3px !important;
  border-left-width:3px !important;
  border-right-width:3px !important;
}
body.embed .grid-pos{font-size:9px !important;top:0 !important}
body.embed .grid-avatar,body.embed .grid-avatar-fallback{
  width:27px !important;
  height:27px !important;
}
body.embed .grid-code{font-size:8px !important}
body.embed .grid-name{font-size:6.2px !important}
body.embed .grid-team{font-size:5.4px !important}

body.embed .grid-track-holder{
  left:16px !important;
  right:16px !important;
  top:32px !important;
  bottom:82px !important;
}
body.embed .track-image{
  width:78% !important;
  height:78% !important;
}
body.embed .grid-info-card{
  width:220px !important;
  max-width:48% !important;
  right:9px !important;
  bottom:9px !important;
  padding:8px 9px !important;
}
body.embed .grid-info-card h3{font-size:9px !important}
body.embed .grid-info-item span{font-size:5.8px !important}
body.embed .grid-info-item b{font-size:7.8px !important}
body.embed .grid-note{font-size:5.8px !important}

body.embed .shell{
  grid-template-rows:54px 28px minmax(0,1fr) 170px !important;
  gap:7px !important;
  padding:5px !important;
}
body.embed .topbar{padding:7px 10px !important}
body.embed h1{font-size:18px !important}
body.embed .main-grid{
  grid-template-columns:minmax(0,1fr) 220px !important;
  gap:7px !important;
}
body.embed .card-head{height:30px !important}
body.embed .table-wrap{height:calc(100% - 30px) !important}
body.embed thead th{height:20px !important;font-size:6px !important}
body.embed tbody td{height:19px !important;font-size:7px !important}

