/* ページ全体を縦に分割 */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 上側: 高さ比率 7 */
.top {
  flex: 7;
  overflow-y: auto; /* スクロール可能にする */
  background-color: #f0f8ff;
  padding: 10px;
}

/* 下側: 高さ比率 3 */
.clock-area {
  flex: 3;
  background-color: #4682b4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

table {
    white-space: nowrap;
}