body,
.mui-bar,
.mui-content .mui-grid-view.mui-grid-9 {
	background-color: #fff;
}

input[type=text] {
	margin-bottom: 0px;
}

/* ========== 现代化输入框样式 ========== */
.input-wrapper {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 14px 20px;
	margin: 15px;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.input-label {
	font-size: 15px;
	color: #333;
	font-weight: 600;
	white-space: nowrap;
	width: 80px;
	line-height: 1;
	display: flex;
	align-items: center;
}

.input-field {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 16px;
	color: #333;
	outline: none;
	height: auto;
	line-height: 1;
	padding: 0;
	margin: 0;
}

.input-field::placeholder {
	color: #999;
	font-size: 15px;
}

/* ========== 订单列表 ========== */
.list-table-view {
	padding: 10px;
	overflow-y: auto;
	background-color: #ffffff;
}

.list-item {
	background: #fff;
	border-radius: 8px;
	padding: 5px 12px;
	margin-bottom: 5px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.08);
}

.item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.item-billcode {
	font-size: 15px;
	font-weight: bold;
	color: #333;
}

.item-count {
	font-size: 14px;
	color: #ff8c00;
	font-weight: 600;
}

.item-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.item-print {
	padding: 2px 8px;
	border-radius: 4px;
}

.print-on {
	background: #e6f7ff;
	color: #1890ff;
}

/* ========== 扫描按钮 ========== */
.scan-btn {
	position: fixed;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #ff8c00, #ff6b00);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
	z-index: 100;
	cursor: pointer;
}

/* ========== 扫码弹窗 ========== */
.scan-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 1000;
}

.scan-modal.active {
	display: block;
}

.scan-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 400px;
}

#reader {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.scan-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}