.jhc-match-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
}
.jhc-match-card,
.jhc-live-score-box,
.jhc-player-card{
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:18px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}
.jhc-match-head,
.jhc-live-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.jhc-series,
.jhc-live-title{
  font-weight:800;
  font-size:18px;
}
.jhc-status{
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:#eef2ff;
}
.jhc-status-live{ background:#dcfce7; }
.jhc-status-completed{ background:#f3f4f6; }
.jhc-status-upcoming{ background:#dbeafe; }

.jhc-teams,
.jhc-live-teams{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  margin:14px 0;
}
.jhc-team,
.jhc-live-team{
  text-align:center;
}
.jhc-team img,
.jhc-live-team img,
.jhc-team-row img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:12px;
  display:block;
  margin:0 auto 8px;
}
.jhc-vs,
.jhc-live-vs{
  font-weight:900;
  font-size:18px;
}
.jhc-match-meta{
  color:#555;
  font-size:14px;
  line-height:1.8;
}
.jhc-live-mini-score,
.jhc-main-score{
  font-size:30px;
  font-weight:900;
  text-align:center;
  margin-top:16px;
}
.jhc-main-overs,
.jhc-main-meta{
  text-align:center;
  margin-top:8px;
  color:#666;
}
.jhc-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
}
.jhc-btn{
  display:inline-block;
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  background:#111827;
  color:#fff;
  font-weight:700;
}
.jhc-btn.alt{
  background:#f3f4f6;
  color:#111827;
}
.jhc-player-head{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
.jhc-player-photo img{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:18px;
}
.jhc-player-placeholder{
  width:110px;
  height:110px;
  border-radius:18px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#666;
}
.jhc-muted{
  color:#666;
  margin-top:4px;
}
.jhc-team-list{
  display:grid;
  gap:12px;
}
.jhc-team-row{
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px;
  border:1px solid #eee;
  border-radius:12px;
}
.jhc-cricket-msg{
  padding:14px;
  border:1px solid #eee;
  border-radius:12px;
  background:#fff;
}
.jhc-score-sheet-wrap{
  max-width:1200px;
  margin:0 auto;
}
.jhc-score-sheet-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}
.jhc-score-sheet-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  margin-bottom:18px;
}
.jhc-sheet-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.jhc-sheet-grid > div{
  background:#fafafa;
  border:1px solid #ececec;
  border-radius:12px;
  padding:10px 12px;
}
.jhc-sheet-table{
  width:100%;
  border-collapse:collapse;
  margin-top:10px;
  margin-bottom:14px;
}
.jhc-sheet-table th,
.jhc-sheet-table td{
  border:1px solid #dfe3e8;
  padding:8px 10px;
  text-align:left;
  vertical-align:top;
}
.jhc-sheet-table th{
  background:#f5f7fa;
}
.jhc-sheet-extras,
.jhc-sheet-total-line{
  margin-top:10px;
  padding:10px 12px;
  background:#fafafa;
  border:1px solid #ececec;
  border-radius:12px;
}
.no-print{
  display:block;
}
@media print{
  .no-print{
    display:none !important;
  }
  .jhc-score-sheet-card{
    box-shadow:none;
    border:1px solid #bbb;
    break-inside:avoid;
  }
  .jhc-score-sheet-wrap{
    max-width:100%;
  }
  body{
    background:#fff !important;
  }
}

.jhc-score-sheet-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.jhc-commentary-list{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.jhc-commentary-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:10px;
  align-items:start;
  border:1px solid #ececec;
  border-radius:12px;
  padding:10px 12px;
  background:#fafafa;
}
.jhc-commentary-ball{
  font-weight:800;
}
.jhc-commentary-text{
  color:#333;
}

.jhc-match-centre{
  max-width:1280px;
  margin:0 auto;
}
.jhc-mc-hero{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  border-radius:24px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  margin-bottom:18px;
}
.jhc-mc-topline{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}
.jhc-mc-series{
  font-size:13px;
  opacity:.9;
}
.jhc-mc-title{
  margin:4px 0 6px;
  font-size:30px;
  line-height:1.1;
}
.jhc-mc-meta{
  font-size:14px;
  opacity:.9;
}
.jhc-mc-scoreboard{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
}
.jhc-mc-team{
  text-align:center;
}
.jhc-mc-team img{
  width:78px;
  height:78px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  padding:6px;
  display:block;
  margin:0 auto 10px;
}
.jhc-mc-team-name{
  font-size:18px;
  font-weight:800;
}
.jhc-mc-centre-score{
  text-align:center;
  min-width:220px;
}
.jhc-mc-main-score{
  font-size:48px;
  font-weight:900;
  line-height:1;
}
.jhc-mc-overs,
.jhc-mc-target{
  margin-top:8px;
  font-size:15px;
}
.jhc-mc-mini-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:20px;
}
.jhc-mc-mini-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:12px;
}
.jhc-mc-mini-label{
  font-size:12px;
  opacity:.85;
}
.jhc-mc-mini-value{
  font-size:16px;
  font-weight:800;
  margin-top:4px;
}
.jhc-mc-recent{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  margin-bottom:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}
.jhc-mc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.jhc-mc-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}
@media (max-width: 980px){
  .jhc-mc-scoreboard{
    grid-template-columns:1fr;
  }
  .jhc-mc-mini-grid{
    grid-template-columns:1fr 1fr;
  }
  .jhc-mc-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .jhc-mc-title{
    font-size:24px;
  }
  .jhc-mc-main-score{
    font-size:40px;
  }
  .jhc-mc-mini-grid{
    grid-template-columns:1fr;
  }
}

.jhc-stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:12px;
}
.jhc-stat-box{
  border:1px solid #ececec;
  background:#fafafa;
  border-radius:14px;
  padding:14px;
}
.jhc-stat-label{
  font-size:12px;
  color:#666;
}
.jhc-stat-value{
  font-size:24px;
  font-weight:800;
  margin-top:6px;
}

.jhc-fixture-list{
  display:grid;
  gap:16px;
}
.jhc-fixture-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}
.jhc-fixture-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.jhc-fixture-title{
  font-size:20px;
  font-weight:800;
}
.jhc-fixture-meta{
  color:#666;
  margin-bottom:12px;
}
.jhc-fixture-teams{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
}
.jhc-fixture-vs{
  text-align:center;
  font-weight:800;
  color:#666;
}
.jhc-fixture-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.jhc-result-text-box{
  background:#fafafa;
  border:1px solid #ececec;
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:12px;
  font-weight:700;
}
.jhc-team-profile-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.jhc-team-profile-main{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.jhc-team-profile-logo{
  width:88px;
  height:88px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  border:1px solid #ececec;
  padding:6px;
}
.jhc-mini-avatar{
  width:36px;
  height:36px;
  object-fit:cover;
  border-radius:50%;
}
@media (max-width: 700px){
  .jhc-fixture-teams{
    grid-template-columns:1fr;
  }
  .jhc-fixture-vs{
    display:none;
  }
}
.jhc-control-center{
  max-width:1280px;
  margin:0 auto;
}
.jhc-dashboard-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.jhc-dashboard-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:18px;
}
.jhc-dashboard-list{
  display:grid;
  gap:12px;
}
.jhc-dashboard-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border:1px solid #ececec;
  border-radius:14px;
  padding:12px;
  background:#fafafa;
}
.jhc-login-wrap{
  max-width:460px;
  margin:40px auto;
}
.jhc-login-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.jhc-login-error{
  background:#fff2f2;
  border:1px solid #f5c2c2;
  color:#a11;
  border-radius:12px;
  padding:10px 12px;
  margin-bottom:12px;
}
.jhc-checkbox-row{
  display:flex;
  align-items:center;
  gap:8px;
}
@media (max-width: 900px){
  .jhc-dashboard-grid{
    grid-template-columns:1fr;
  }
  .jhc-dashboard-item{
    flex-direction:column;
    align-items:flex-start;
  }
}