body {            
	font-family: hershey, Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 22px;	
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-text-size-adjust: 100%;
    color: #FFF;
    background-color: #000;
    margin: 0;
    padding: 0;
}

canvas {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

p {
    position: relative;
    margin-block-start: 0em;
    z-index: 1;
}

#slideshow {
    /* border: 1px solid red; */
}

#slideshow img {
    /* border: 1px solid blue; */
}

#slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
  z-index: 0;
  background: black;
}

#slideshow .slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#slideshow .slide iframe {
  border: none;
  background: black;
}

#slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

#slideshow .slide.previous {
  z-index: 0;
}

/* Remove these sections */
#info-overlay,
#schedule-overlay,
#schedule-hover-area {
  display: none;  /* Or just delete these sections entirely */
}
/* End remove these sections */

#schedule-info {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: 100vh;
  background: #333;
  padding: 40px;
  color: white;
  font-family: hershey, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  columns: 300px 6;
  column-gap: 44px;
  padding: 2em;
  transition: opacity 0.75s ease; 
}


/* Remove these sections */

#schedule-info h1 {
  font-size: 18px;
  margin-bottom: 20px;
}

#schedule-grid {
  position: fixed;
  top: 280px;
  left: 0;  /* Increased to give more space */
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 40px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  columns: 300px auto;
  column-gap: 40px;
  display: none;
}

#schedule-grid .item {
  color: white;
  font-family: hershey, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  padding: 4px 0;
  margin-bottom: 4px;
  break-inside: avoid; /* Prevent items from splitting across columns */
}

#schedule-grid .item.current {
  color: #fff;
  background: rgba(255,255,255,0.1);
  padding: 4px;
}

#schedule-grid .item.past {
  opacity: 0.4;
}

#schedule-grid .channel {
  font-size: 12px;
  opacity: 0.7;
}

/* End remove these sections */

#channel-info {
    position: fixed;
    top: 20px;
    left: 20px;
}

#copyleft-download {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: inline-block;
}

#copyleft-download img {
    height: 30px;
    padding-right: 10px;
    vertical-align: middle;
}

