/* ===== TV Guide Template Styles ===== */

/* Reset body margins and padding */
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

:root{
  --tv-guide-channel-col-w: 220px;
  --tv-guide-row-h: 80px;  /* increased from 72px for better vertical spacing */
  --tv-guide-px-per-minute: 1.8; /* zoom */
  
  /* Default dark theme colors */
  --tv-guide-bg: #0f1115;
  --tv-guide-surface: #161a20;
  --tv-guide-surface-2:#1c2129;
  --tv-guide-text: #e9eef7;
  --tv-guide-muted:#9aa7b4;
  --tv-guide-accent:#4ea1ff;
  --tv-guide-border:#262c36;
  --tv-guide-prog-bg: #0f1320;
  --tv-guide-topbar-bg: linear-gradient(180deg,#12161c,#101318);
  --tv-guide-hours-bg: linear-gradient(180deg,#12161c,#0f1319);
  --tv-guide-chan-bg: linear-gradient(180deg,#141922,#11151b);
  --tv-guide-row-bg: linear-gradient(180deg,#12161c,#0f1217);
  --tv-guide-logo-bg: #0a0d12;
  --tv-guide-logo-border: #1e2530;
  --tv-guide-pill-bg: #0d1016;
  --tv-guide-scrollbar-track: #0e1217;
  --tv-guide-scrollbar-thumb: #293241;
}

/* Light Theme */
.tv-guide-wrap.tv-guide-light {
  --tv-guide-bg: #ffffff;
  --tv-guide-surface: #f8f9fa;
  --tv-guide-surface-2: #e9ecef;
  --tv-guide-text: #212529;
  --tv-guide-muted: #6c757d;
  --tv-guide-accent: #0d6efd;
  --tv-guide-border: #dee2e6;
  --tv-guide-prog-bg: #e3f2fd;
  --tv-guide-topbar-bg: linear-gradient(180deg,#f8f9fa,#e9ecef);
  --tv-guide-hours-bg: linear-gradient(180deg,#f8f9fa,#e9ecef);
  --tv-guide-chan-bg: linear-gradient(180deg,#f1f3f4,#e8eaed);
  --tv-guide-row-bg: linear-gradient(180deg,#f8f9fa,#f1f3f4);
  --tv-guide-logo-bg: #e9ecef;
  --tv-guide-logo-border: #ced4da;
  --tv-guide-pill-bg: #f8f9fa;
  --tv-guide-scrollbar-track: #e9ecef;
  --tv-guide-scrollbar-thumb: #adb5bd;
}

/* Gray Theme */
.tv-guide-wrap.tv-guide-gray {
  --tv-guide-bg: #2d3748;
  --tv-guide-surface: #4a5568;
  --tv-guide-surface-2: #718096;
  --tv-guide-text: #f7fafc;
  --tv-guide-muted: #a0aec0;
  --tv-guide-accent: #63b3ed;
  --tv-guide-border: #4a5568;
  --tv-guide-prog-bg: #2d3748;
  --tv-guide-topbar-bg: linear-gradient(180deg,#4a5568,#2d3748);
  --tv-guide-hours-bg: linear-gradient(180deg,#4a5568,#2d3748);
  --tv-guide-chan-bg: linear-gradient(180deg,#4a5568,#2d3748);
  --tv-guide-row-bg: linear-gradient(180deg,#4a5568,#2d3748);
  --tv-guide-logo-bg: #1a202c;
  --tv-guide-logo-border: #4a5568;
  --tv-guide-pill-bg: #1a202c;
  --tv-guide-scrollbar-track: #2d3748;
  --tv-guide-scrollbar-thumb: #718096;
}

/* Blue Theme */
.tv-guide-wrap.tv-guide-blue {
  --tv-guide-bg: #1e3a8a;
  --tv-guide-surface: #1e40af;
  --tv-guide-surface-2: #3b82f6;
  --tv-guide-text: #eff6ff;
  --tv-guide-muted: #93c5fd;
  --tv-guide-accent: #fbbf24;
  --tv-guide-border: #1e40af;
  --tv-guide-prog-bg: #1e3a8a;
  --tv-guide-topbar-bg: linear-gradient(180deg,#1e40af,#1e3a8a);
  --tv-guide-hours-bg: linear-gradient(180deg,#1e40af,#1e3a8a);
  --tv-guide-chan-bg: linear-gradient(180deg,#1e40af,#1e3a8a);
  --tv-guide-row-bg: linear-gradient(180deg,#1e40af,#1e3a8a);
  --tv-guide-logo-bg: #1e3a8a;
  --tv-guide-logo-border: #3b82f6;
  --tv-guide-pill-bg: #1e3a8a;
  --tv-guide-scrollbar-track: #1e3a8a;
  --tv-guide-scrollbar-thumb: #3b82f6;
}

/* Global box sizing so padding/border don't change measured width */
.tv-guide-wrap *, .tv-guide-wrap *::before, .tv-guide-wrap *::after { box-sizing: border-box; }

/* Global smooth scrolling for all scrollable elements */
.tv-guide-wrap * {
  scroll-behavior: smooth;
}

.tv-guide-wrap{ 
  height:100vh; 
  display:grid; 
  grid-template-rows:auto auto 1fr;
  font: 14px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--tv-guide-text);
  background: var(--tv-guide-bg);
}

.tv-guide-topbar{
  padding: 16px clamp(12px,4vw,28px);
  display:flex; gap:12px; align-items:center;
  border-bottom:1px solid var(--tv-guide-border);
  background: var(--tv-guide-topbar-bg);
  position:sticky; top:0; z-index:50;
}
.tv-guide-title{ 
  font-weight:700; 
  color: var(--tv-guide-text);
}
.tv-guide-pill{ 
  color:var(--tv-guide-muted); 
  background: var(--tv-guide-pill-bg); 
  border:1px solid var(--tv-guide-border);
  padding:6px 10px; 
  border-radius:999px; 
}

/* Week Navigation */
.tv-guide-week-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.tv-guide-nav-btn {
  background: var(--tv-guide-surface);
  color: var(--tv-guide-text);
  border: 1px solid var(--tv-guide-border);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-guide-nav-btn:hover {
  background: var(--tv-guide-surface-2);
  border-color: var(--tv-guide-accent);
}

.tv-guide-week-buttons {
  display: flex;
  gap: 4px;
}

.tv-guide-date-btn {
  background: var(--tv-guide-surface);
  color: var(--tv-guide-text);
  border: 1px solid var(--tv-guide-border);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 60px;
}

.tv-guide-date-btn:hover {
  background: var(--tv-guide-surface-2);
  border-color: var(--tv-guide-accent);
}

.tv-guide-date-btn.active {
  background: var(--tv-guide-accent);
  color: #000;
  border-color: var(--tv-guide-accent);
  font-weight: 600;
}

.tv-guide-date-btn.today {
  border-color: var(--tv-guide-accent);
  font-weight: 600;
}

/* Hour Width Slider */
.tv-guide-width-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  color: var(--tv-guide-text);
  font-size: 12px;
}

.tv-guide-width-slider label {
  white-space: nowrap;
  font-weight: 500;
}

.tv-guide-width-slider input[type="range"] {
  width: 120px;
  height: 4px;
  background: var(--tv-guide-border);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.tv-guide-width-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--tv-guide-accent);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tv-guide-width-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tv-guide-width-slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--tv-guide-accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.tv-guide-width-slider input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.tv-guide-width-slider #hour-width-value {
  min-width: 50px;
  text-align: center;
  font-weight: 600;
  color: var(--tv-guide-accent);
}

/* Refresh Button */
.tv-guide-refresh-btn {
  background: var(--tv-guide-surface);
  color: var(--tv-guide-text);
  border: 1px solid var(--tv-guide-border);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 8px;
}

.tv-guide-refresh-btn:hover {
  background: var(--tv-guide-surface-2);
  border-color: var(--tv-guide-accent);
  transform: scale(1.05);
}

.tv-guide-refresh-btn:active {
  transform: scale(0.95);
}

.tv-guide-refresh-btn.loading {
  animation: spin 1s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

/* Theme Switcher */
.tv-guide-theme-switcher {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.tv-guide-theme-btn {
  background: var(--tv-guide-surface);
  color: var(--tv-guide-text);
  border: 1px solid var(--tv-guide-border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tv-guide-theme-btn:hover {
  background: var(--tv-guide-surface-2);
  border-color: var(--tv-guide-accent);
}

.tv-guide-theme-btn.active {
  background: var(--tv-guide-accent);
  color: #000;
  border-color: var(--tv-guide-accent);
}

/* HOURS HEADER (left label + scrolling scale that syncs with program pane) */
.tv-guide-hours{
  display:grid; grid-template-columns: var(--tv-guide-channel-col-w) 1fr;
  height:40px; position:sticky; top:64px; z-index:40;
  background: var(--tv-guide-hours-bg);
  border-bottom:1px solid var(--tv-guide-border);
}
.tv-guide-hours .tv-guide-label{
  position:sticky; left:0; display:flex; align-items:center; justify-content:center;
  color:var(--tv-guide-muted); font-weight:600; border-right:1px solid var(--tv-guide-border);
  background:inherit; z-index:2;
}
.tv-guide-hours .tv-guide-scale-viewport{ 
  overflow:hidden; 
  position:relative; 
  will-change: transform;
  transform: translateZ(0);
  scroll-behavior: smooth;
}
.tv-guide-hours .tv-guide-scale-inner{ 
  position:relative; 
  height:100%; 
  width: 6000px; /* Initial width for 24 hours at 250px each */
}
.tv-guide-hour{
  position:absolute; top:0; bottom:0; transform:translateX(-50%);
  text-align:center; color:var(--tv-guide-muted); font-size:12px; white-space:nowrap;
  border-left:1px dashed #2b3340; padding-top:6px; pointer-events:none;
  width: 1px; /* Minimal width since we're using transform */
}

.tv-guide-hour-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-weight: 500;
  color: var(--tv-guide-muted);
  font-size: 11px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* MAIN GRID: left sticky channel column + right scrollable timeline */
.tv-guide-guide{
  display:grid; grid-template-columns: var(--tv-guide-channel-col-w) 1fr;
  height: calc(100vh - 64px - 40px);
  min-height:0;
}

/* LEFT COLUMN: channels (not scrollable horizontally) */
.tv-guide-chanCol{
  position:sticky; left:0; z-index:5; /* removed overflow:auto to fix vertical scrolling */
  background: var(--tv-guide-chan-bg);
  border-right:1px solid var(--tv-guide-border);
  scroll-behavior: smooth;
}
.tv-guide-chan-row{
  height:var(--tv-guide-row-h); display:flex; align-items:center; gap:12px;
  padding:0 14px; border-bottom:1px solid var(--tv-guide-border);
  background: var(--tv-guide-chan-bg);
  transition: all 0.2s ease;
  position: relative;
}

/* Hover effects for clickable channels */
.tv-guide-chan-row:hover {
  background: var(--tv-guide-surface-2);
  transform: translateX(2px);
}

/* Active channel styles - Default Dark Theme */
.tv-guide-chan-row.active {
  background: linear-gradient(90deg, var(--tv-guide-accent), rgba(78, 161, 255, 0.1));
  border-left: 4px solid var(--tv-guide-accent);
  box-shadow: inset 0 0 0 1px var(--tv-guide-accent);
  color: var(--tv-guide-text);
  font-weight: 600;
}

.tv-guide-chan-row.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tv-guide-accent);
  z-index: 1;
}

/* Light Theme Active Channel */
.tv-guide-wrap.tv-guide-light .tv-guide-chan-row.active {
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.15), rgba(13, 110, 253, 0.05));
  border-left: 4px solid #0d6efd;
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.3);
  color: #0d6efd;
}

.tv-guide-wrap.tv-guide-light .tv-guide-chan-row.active::before {
  background: #0d6efd;
}

/* Gray Theme Active Channel */
.tv-guide-wrap.tv-guide-gray .tv-guide-chan-row.active {
  background: linear-gradient(90deg, rgba(99, 179, 237, 0.2), rgba(99, 179, 237, 0.08));
  border-left: 4px solid #63b3ed;
  box-shadow: inset 0 0 0 1px rgba(99, 179, 237, 0.4);
  color: #63b3ed;
}

.tv-guide-wrap.tv-guide-gray .tv-guide-chan-row.active::before {
  background: #63b3ed;
}

/* Blue Theme Active Channel */
.tv-guide-wrap.tv-guide-blue .tv-guide-chan-row.active {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.08));
  border-left: 4px solid #fbbf24;
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}

.tv-guide-wrap.tv-guide-blue .tv-guide-chan-row.active::before {
  background: #fbbf24;
}

/* Active channel logo and name styling */
.tv-guide-chan-row.active .tv-guide-logo {
  border-color: var(--tv-guide-accent);
  box-shadow: 0 0 0 2px rgba(78, 161, 255, 0.3);
}

.tv-guide-wrap.tv-guide-light .tv-guide-chan-row.active .tv-guide-logo {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.3);
}

.tv-guide-wrap.tv-guide-gray .tv-guide-chan-row.active .tv-guide-logo {
  border-color: #63b3ed;
  box-shadow: 0 0 0 2px rgba(99, 179, 237, 0.3);
}

.tv-guide-wrap.tv-guide-blue .tv-guide-chan-row.active .tv-guide-logo {
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.3);
}
.tv-guide-logo{ 
  width:40px; 
  height:40px; 
  border-radius:8px; 
  flex:none;
  background: var(--tv-guide-logo-bg); 
  border:1px solid var(--tv-guide-logo-border); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-weight:800; 
  color: var(--tv-guide-text);
  overflow: hidden;
}

.tv-guide-logo img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
}
.tv-guide-chan-name{ 
  font-weight:600; 
  color: var(--tv-guide-text);
  line-height: 1.2;
  max-height: 2.4em; /* 2 lines * 1.2 line-height */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  hyphens: auto;
}

/* RIGHT COLUMN: only this scrolls horizontally */
.tv-guide-timeline{
  position:relative; overflow-x:auto; overflow-y:hidden; /* prevent vertical scrollbar */
  background:var(--tv-guide-surface); cursor:grab; user-select:none; scroll-behavior:smooth;
}
.tv-guide-timeline.tv-guide-dragging{ cursor:grabbing; scroll-behavior:auto; }
.tv-guide-timeline::-webkit-scrollbar{ height:12px }
.tv-guide-timeline::-webkit-scrollbar-track{ background: var(--tv-guide-scrollbar-track) }
.tv-guide-timeline::-webkit-scrollbar-thumb{ background: var(--tv-guide-scrollbar-thumb); border-radius:12px; border:2px solid var(--tv-guide-scrollbar-track) }

.tv-guide-track-width{ 
  width: calc(var(--tv-guide-minutes-total) * var(--tv-guide-px-per-minute) * 1px); 
  position:relative; 
  will-change: scroll-position;
  scroll-behavior: smooth;
  overflow: hidden; /* prevent double scrollbars */
}

.tv-guide-rowTrack{
  height:var(--tv-guide-row-h); border-bottom:1px solid var(--tv-guide-border);
  background: var(--tv-guide-row-bg); position:relative;
}

/* Program blocks — no margins, border-box so time spans are exact */
.tv-guide-prog{
  position:absolute; top:10px; height: calc(var(--tv-guide-row-h) - 20px);
  background: var(--tv-guide-prog-bg); border-radius:10px;
  padding:8px 10px;        /* increased padding for better spacing */
  margin:0;               /* ensure no outside spacing */
  border:0;               /* remove real border to avoid width inflation */
  box-shadow: inset -1px 0 0 rgba(255,255,255,.08), inset 1px 0 0 rgba(255,255,255,.08); /* subtle left and right hairlines with increased opacity */
  display:flex; flex-direction: column; justify-content: space-between; gap:4px;
  overflow: hidden;
  z-index: 1; /* Ensure proper layering */
}

/* Add subtle separation between programs */
.tv-guide-prog::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--tv-guide-border);
  opacity: 0.3;
  pointer-events: none;
}

/* Loading and No Data States */
.tv-guide-loading,
.tv-guide-no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--tv-guide-row-h);
  color: var(--tv-guide-muted);
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.tv-guide-loading {
  flex-direction: column;
  gap: 16px;
}





.tv-guide-no-data::before {
  content: '📺 ';
  margin-right: 8px;
}



/* Loading skeleton animation for channels */
.tv-guide-loading-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.tv-guide-skeleton-row {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--tv-guide-row-h);
}

.tv-guide-skeleton-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, var(--tv-guide-border) 25%, var(--tv-guide-surface-2) 50%, var(--tv-guide-border) 75%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: shimmer 1.5s infinite;
}

.tv-guide-skeleton-name {
  width: 120px;
  height: 16px;
  background: linear-gradient(90deg, var(--tv-guide-border) 25%, var(--tv-guide-surface-2) 50%, var(--tv-guide-border) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s infinite;
}

.tv-guide-skeleton-programs {
  display: flex;
  gap: 8px;
  height: var(--tv-guide-row-h);
}

.tv-guide-skeleton-program {
  width: 80px;
  height: calc(var(--tv-guide-row-h) - 20px);
  background: linear-gradient(90deg, var(--tv-guide-border) 25%, var(--tv-guide-surface-2) 50%, var(--tv-guide-border) 75%);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.tv-guide-prog:hover{ 
  outline:2px solid var(--tv-guide-accent); 
  z-index: 2; /* Bring hovered program to front */
  box-shadow: inset -1px 0 0 rgba(255,255,255,.12), inset 1px 0 0 rgba(255,255,255,.12), 0 2px 8px rgba(0,0,0,0.2); /* Enhanced shadows on hover */
}

/* Video Popover Styles */
.tv-guide-popover {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 16px;
  max-width: 300px;
  z-index: 9999;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  font: 14px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.tv-guide-popover.show {
  opacity: 1;
  transform: translateY(0);
}

.tv-guide-popover-thumbnail {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 24px;
}

.tv-guide-popover-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-guide-popover-title {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tv-guide-popover-description {
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 8px;
}

.tv-guide-popover-time {
  font-size: 11px;
  color: #0066cc;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.tv-guide-prog .tv-guide-name{ 
  font-weight: 600; 
  line-height: 1.2;
  overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap;
}
.tv-guide-prog .tv-guide-t{ 
  color:var(--tv-guide-muted); 
  font-size:11px; 
  font-variant-numeric: tabular-nums; 
  line-height: 1;
  text-align: right;
}

/* NOW line lives in the program track */
.tv-guide-now-line{ 
  position: absolute; 
  top: 0; 
  bottom: 0; 
  width: 4px; 
  background: var(--tv-guide-accent);
  box-shadow: 0 0 10px var(--tv-guide-accent); 
  z-index: 9999; 
  pointer-events: none; 
}
.tv-guide-now-badge{ position:absolute; top:-18px; transform:translate(-50%,-50%);
            background:var(--tv-guide-accent); color:#08101a; font-weight:700;
            padding:2px 6px; border-radius:999px; font-size:11px; box-shadow:0 2px 8px rgba(0,0,0,.35) }

@media (max-width:700px){
  :root{ --tv-guide-channel-col-w: 180px; --tv-guide-row-h: 72px; }
  .tv-guide-logo{ width:32px; height:32px; }
  .tv-guide-logo img { 
    width: 28px; 
    height: 28px; 
    border-radius: 50%; 
  }
}

/* ===== TV Guide Offcanvas Integration Styles ===== */

/* Ensure TV Guide content fits properly in offcanvas */
.tv-guide-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tv-guide-guide {
  flex: 1;
  overflow: auto;
}

/* TV Guide container styling for offcanvas */
#tv-guide-container {
  height: 100%;
  width: 100%;
}
