/* Container styling */
.ppt-tier-table-wrapper {
	margin: 20px 0;
	font-family: inherit;
	box-sizing: border-box;
}

/* Table styling */
.ppt-table {
	width: 100%;
	border-collapse: collapse !important;
	border: 1px solid #dcdcde !important;
	background-color: #fff !important;
	border-radius: 4px;
	overflow: hidden;
	box-sizing: border-box;
}

/* Cell alignment, padding and consistent border color */
.ppt-table th.ppt-header-cell {
	background-color: #333e48 !important;
	color: #ffffff !important;
	font-weight: bold !important;
	text-align: left !important;
	padding: 12px 15px !important;
	border: 1px solid #dcdcde !important;
	font-size: 0.95em !important;
	width: 180px; /* fixed label width */
	box-sizing: border-box;
}

.ppt-table td {
	padding: 12px 15px !important;
	text-align: center !important;
	border: 1px solid #dcdcde !important;
	font-size: 0.95em !important;
	box-sizing: border-box;
}

/* Row-specific backgrounds applied directly to td cells to override theme defaults */

/* Row 1: Qty Cells */
.ppt-cell-qty {
	background-color: #333e48 !important;
	color: #ffffff !important; /* White text for strong contrast on dark background */
	font-weight: bold !important;
}

/* Row 2: Discount Cells */
.ppt-cell-discount {
	background-color: #ffffff !important;
	color: #222222 !important; /* Dark text for strong contrast on white background */
}

/* Row 3: Price Cells */
.ppt-cell-price {
	background-color: #f2f2f2 !important;
	color: #222222 !important; /* Dark text for strong contrast on light grey background */
}

/* Active Highlight Style for Cells (with high contrast and legibility) */
.ppt-cell-qty.ppt-active-cell {
	color: #00ff66 !important; /* Bright green text for maximum contrast on dark #333e48 background */
	font-weight: bold !important;
}

.ppt-cell-price.ppt-active-cell {
	color: #1e7e34 !important; /* Deep forest green for high contrast on light grey #f2f2f2 background */
	font-weight: bold !important;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
	.ppt-table th.ppt-header-cell {
		width: auto;
		padding: 10px !important;
		font-size: 0.85em !important;
	}
	.ppt-table td {
		padding: 10px !important;
		font-size: 0.85em !important;
	}
}
