/* ===== HARD LOCK PAGE ===== */
html, body {
 width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

/* ===== TOP AREA (FEATURE + SCHEDULE) ===== */
#screen {
  flex: 100%;     
  height: 100%;
  display: flex;
  flex-direction: row;   /* 👈 FORCE side-by-side */
  align-items: stretch;
  overflow: hidden;
}


/* ===== FEATURE (LEFT) ===== */
#feature {
  float: left;
  width: 70%;     /* LEFT */
  height: 80%;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

#sidepanel {
  float: right;
  width: 30%;     /* RIGHT */
  height: 100%;
  background: #f4f4f4;
  color: #000;
}

#feature img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.feature-fit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* CLOCK */
#clock {
  height: 60px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
  
}



#schedule {
  height: 60%;        /* 580 - 60 */
  padding: 10px;
  box-sizing: border-box;
}

#schedule h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 4px;
}

#schedule iframe {
  width: 100%;
  height: 100%;        /* MUST FIT */
  border: none;
  background: #fff;
}


/* ===== BOTTOM TICKER ===== */
#ticker {
  width: 100%;
  height: 160px;
  background: #ffffff;
  display: flex;
  align-items: Right;
  overflow: hidden;
}

/* LOGO */
#logo {
  width: 160px;
  text-align: center;
}

#logo img {
  max-height: 70px;
}

/* NEWS */
#news {
  width: 100%;
  font-size: 30px;
}

#news iframe {
  width: 100%;
  height: 100px;
  border: none;
}

#stage {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

