.auto-style1 {
	text-align: center;
}
.auto-style2 {
	text-align: left;
}
.t14 {
	FONT-SIZE: 16px
}
.auto-style3 {
	text-align: right;
}
.board{
	border:1px #999999 solid; 
	border-radius:5px;
}
.board-container {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px; /* 增加圓角 */
  overflow: hidden; /* 確保圓角效果 */
}
.board td {
  padding: 12px 15px;
  font-family: Arial, sans-serif;
}
.board tr:nth-child(even) {
  background-color: #f8f8f8; /* 淺灰色背景 */
}
.board tr:first-child td {
  background-color: #007bff; /* 藍色背景 */
  color: white; /* 白色字體 */
  font-weight: bold;
}
.board tr:hover {
  background-color: #e9ecef; /* 滑鼠懸停時的淺灰色 */
  transition: background-color 0.3s ease; /* 平滑過渡效果 */
}