.tank-section,
.tank-section * {
	box-sizing: border-box;
}

.tank-section {
	padding: 50px 24px 70px 24px;
	background: #ffffff;
	max-width: 1400px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
}

.tank-title {
	text-align: center;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #F80503, #FF7D09);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.3px;
}

.order-badge {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #2c3e4e;
	background: #f0f2f5;
	display: inline-block;
	width: auto;
	margin: 0 auto 20px;
	padding: 6px 18px;
	border-radius: 40px;
	letter-spacing: 0.3px;
}

.tank-search {
	max-width: 460px;
	margin: 10px auto 28px auto;
	display: block;
	padding: 14px 22px;
	border-radius: 60px;
	border: 1px solid #e2e8f0;
	font-size: 15px;
	font-weight: 500;
	outline: none;
	background: white;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	font-family: 'Montserrat', sans-serif;
	width: 100%;
}

.tank-search:focus {
	border-color: #FF7D09;
	box-shadow: 0 6px 16px rgba(248, 5, 3, 0.12);
}

.table-wrap {
	max-height: 680px;
	overflow-y: auto;
	border-radius: 20px;
	box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.12);
	border: 1px solid #edf2f7;
	background: #fff;
}

.table-wrap::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.table-wrap::-webkit-scrollbar-thumb {
	background: #FF7D09;
	border-radius: 10px;
}

.tank-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	font-family: 'Montserrat', sans-serif;
	min-width: 620px;
}

.tank-table thead {
	position: sticky;
	top: 0;
	z-index: 15;
	backdrop-filter: blur(2px);
}

.tank-table th {
	background: linear-gradient(98deg, #F80503, #FF7D09);
	color: white;
	padding: 18px 16px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.3px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.tank-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #edf2f7;
	color: #1a2c3e;
	font-size: 14.5px;
	font-weight: 500;
	vertical-align: top;
	line-height: 1.4;
}

.tank-table tbody tr:hover {
	background: #fff6f0;
	transition: 0.1s;
}

.col-id {
	width: 70px;
	font-weight: 700;
	color: #d95103;
	background-color: #fefaf5;
}

.col-size {
	width: 210px;
	font-weight: 700;
	color: #1f3b4c;
}

.customer-detail {
	color: #2d4a6e;
	font-weight: 500;
	word-break: break-word;
	white-space: normal;
}

.footer-note {
	text-align: center;
	margin-top: 28px;
	font-size: 13px;
	color: #6c7e8f;
	font-weight: 500;
}

@media (max-width: 700px) {
	.tank-section {
		padding: 30px 16px 50px;
	}

	.tank-table th,
	.tank-table td {
		padding: 10px 12px;
		font-size: 13px;
	}

	.col-size {
		width: 140px;
	}

	.tank-title {
		font-size: 28px;
	}
}
