html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: Arial, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.banner img { width: 100%; height: auto; display: block; }
.content { position: relative; }
.content img { width: 100%; height: auto; display: block; }
.table-wrapper {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 800px; padding: 40px; box-sizing: border-box;
}

#info {
  margin: 20px 0;
  font-size: 22px;         /* 字體更大 */
  font-weight: bold;       /* 加粗 */
  color: #000;             /* 黑色 */
  text-shadow: none;       /* 移除陰影讓字更清楚 */
}

table {
  width: 100%; border-collapse: collapse;
  background: rgba(255,255,255,0.9); border-radius: 10px;
  overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* 進行中場次高亮 */
tr.active td {
  background-color: #fff3b0 !important; /* 淡黃色高亮 */
}


th, td {
  border: 1px solid rgba(0,0,0,0.15);
  text-align: center;
  color: #000;
  vertical-align: top;
  font-size: 20px;               /* 調大字體 */
  line-height: 1.6;              /* 增加行距，避免擠在一起 */
  font-weight: bold;
}

th {
  background: #ff9800;           /* 橘色標題列 */
  color: white;
  font-size: 22px;               /* 標題字更大 */
  font-weight: bold;
}

td.time {
  font-weight: bold; background: rgba(240,240,240,0.8); width: 20%;
}

.two-line { line-height: 1.25; margin: 4px 0; }

.two-line .time-text { font-weight: 700; font-size: 14px; color: #222; }

.two-line .title-text { font-size: 16px; color: #000; margin-top: 2px; }

a.button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background-color: #228B22;   /* 墨綠 */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  margin-top: 6px;
}

a.button:hover {
  background-color: #1a6e1a;   /* 更深墨綠 (hover) */
}
