 body {
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 20;
	background-color: #f0f0f0;
}

.page {
    display: none;
}

.active {
	display: block;
}

#scanner-container {
	text-align: center;
    font-size: 1.5em; /* adjust this value to increase or decrease the font size */
    color: #F01ff7; /* change this value to your desired color */
	padding: 10px;
}

video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.scanner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	border: 10px solid rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	z-index: 1;
}

#start-scanner {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 5px;
}

.button1 {
	background-color: #4C50AF;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 5px;
	display: inline-block;
}

.button2 {
	background-color: #AF4C50;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 5px;
	display: inline-block;
}

.button-container {
	display: flex;
    justify-content: center;
}

.title {
    text-align: center;
    font-size: 1.5em; /* adjust this value to increase or decrease the font size */
    color: #F01ff7; /* change this value to your desired color */
	padding: 10px;
}

.status {
    text-align: center;
    font-size: 1em; /* adjust this value to increase or decrease the font size */
    color: #1f０7F0; /* change this value to your desired color */
	padding: 10px;
}

.table-wrapper {
  width: 60%; /* 设置表格容器的宽度 */
  margin: 0 auto; /* 将表格容器居中显示 */
  border: 1px solid black; /* 添加分隔线 */
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

td, th {
  padding: 10px;
  border: 1px solid black; /* 添加分隔线 */
  border-bottom: 1px solid black;
}