/* NHLTR NHL TV Schedules - team-skinned header + accents */
.nhltr-tv-sched{
  --nhltr-primary:#111111;
  --nhltr-secondary:#ffffff;
  width:100%;
  margin:1rem 0;
}

.nhltr-tv-sched-title{margin:0;line-height:1.2}

.nhltr-tv-sched-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:10px;
  border: 1px solid rgba(0,0,0,.10);
}

.nhltr-tv-sched-table{
  width:100%;
  border-collapse:collapse;
  min-width:680px;
  background:#fff;
}

.nhltr-tv-sched-table th,
.nhltr-tv-sched-table td{
  padding:12px;
  border-bottom:1px solid rgba(0,0,0,.08);
  text-align:left;
  vertical-align:middle;
}

.nhltr-tv-sched-table thead th{
  font-weight:800;
  letter-spacing:.6px;
  background: var(--nhltr-primary);
  color: var(--nhltr-secondary);
  border-bottom: 2px solid rgba(255,255,255,.18);
}

.nhltr-tv-sched-table tbody tr:hover{background:rgba(0,0,0,.02)}

.nhltr-tv-sched-updated{
  margin-top:.6rem;
  font-size:.85rem;
  opacity:.7;
  border-left: 3px solid var(--nhltr-secondary);
  padding-left: .6rem;
}

.nhltr-tv-sched-error{padding:.75rem 1rem;border-left:4px solid #cc0000;background:rgba(204,0,0,.06)}
.nhltr-tv-sched-empty{padding:.75rem 1rem;border-left:4px solid #888;background:rgba(0,0,0,.04)}

/* Opponent cell layout */
.nhltr-opp{display:flex;align-items:center;gap:.5rem;line-height:1.2}
.nhltr-opp-logo{display:inline-block;border-radius:4px;flex:0 0 auto}
.nhltr-preview{margin-top:.25rem;font-size:.85rem;opacity:.85}
.nhltr-preview a{text-decoration:underline}

/* Channel badges */
.nhltr-ch-badges{display:flex;flex-wrap:wrap;gap:.35rem}
.nhltr-ch-badge{
  display:inline-flex;
  align-items:center;
  padding:.2rem .5rem;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  font-size:.85rem;
  line-height:1;
  white-space:nowrap;
  background: rgba(0,0,0,.02);
}

/* Make badges pick up team accent subtly */
.nhltr-tv-sched .nhltr-ch-badge{
  box-shadow: inset 0 0 0 9999px rgba(0,0,0,.00);
}
.nhltr-tv-sched .nhltr-ch-badge:hover{
  border-color: var(--nhltr-secondary);
}

/* Mobile */
@media (max-width:768px){
  .nhltr-tv-sched-table{min-width:560px}
  .nhltr-tv-sched-table th,.nhltr-tv-sched-table td{padding:10px}
}


/* Team title header with logo */
.nhltr-tv-sched-header{display:flex;align-items:center;gap:.65rem;margin:0 0 .5rem 0}
.nhltr-team-logo{display:inline-block;border-radius:6px;flex:0 0 auto}


/* Today's game highlight */
.nhltr-tv-sched-table tbody tr.nhltr-row-today{background: rgba(0,0,0,.03); box-shadow: inset 4px 0 0 0 var(--nhltr-secondary);} 
.nhltr-today-badge{display:inline-block; margin-left:.5rem; padding:.12rem .45rem; border-radius:999px; font-size:.72rem; font-weight:800; letter-spacing:.4px; background: var(--nhltr-secondary); color: var(--nhltr-primary);}
