/* Bulk Discount Table - Collapsible Styling */

/* Collapsible wrapper */
.awdr-bulk-discount-collapsible {
	margin: 20px 0;
	border: 1px solid var(--nn-color-gray-lighter, #e0e0e0);
	padding-top: 14px !important;
	padding-bottom: 14px !important;
	border-radius: 5px;
}

/* Collapsible header */
.awdr-bulk-discount-header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	user-select: none;
	margin-bottom: 0;
	padding: 0 20px !important;
}

.awdr-bulk-discount-header:hover {
	opacity: 0.8;
}

.awdr-bulk-discount-header-text {
	font-weight: 400;
	font-size: 14px;
	color: var(--nn-color-black, #000);
	margin: 0;
}

.awdr-bulk-discount-chevron {
	display: inline-flex;
	align-items: center;
	transition: transform 0.3s ease;
	line-height: 1;
	margin-left: 10px;
}

.awdr-bulk-discount-chevron svg {
	display: block;
}

.awdr-bulk-discount-collapsible.collapsed .awdr-bulk-discount-chevron {
	transform: rotate(180deg);
}

/* Collapsible content wrapper */
.awdr-bulk-discount-content {
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	max-height: 2000px;
	opacity: 1;
}

.awdr-bulk-discount-collapsible.collapsed .awdr-bulk-discount-content {
	max-height: 0;
	opacity: 0;
}

/* Table styling - clean and minimalist like image 1 */
.awdr-bulk-customizable-table {
	margin: 0 !important;
	padding: 0 !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg {
	width: 100% !important;
	border-collapse: collapse !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* Remove all borders and backgrounds */
.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead,
.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody,
.awdr-bulk-customizable-table table.wdr_bulk_table_msg tr,
.awdr-bulk-customizable-table table.wdr_bulk_table_msg th,
.awdr-bulk-customizable-table table.wdr_bulk_table_msg td {
	border: none !important;
	background: transparent !important;
	background-color: transparent !important;
	padding: 8px 20px !important;
	box-shadow: none !important;
}

/* Header styling */
.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead tr {
	position: relative !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead tr::after {
	content: '' !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 20px !important;
	right: 20px !important;
	height: 1px !important;
	background-color: var(--nn-color-gray-lighter, #e0e0e0) !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead th {
	font-weight: 400 !important;
	color: var(--nn-color-black, #000) !important;
	text-align: left !important;
	padding-bottom: 0px !important;
	padding-top: 8px !important;
	font-size: 14px !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead th#customize-bulk-table-range {
	text-align: center !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead th#customize-bulk-table-discount {
	text-align: right !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead th#customize-bulk-table-discount-amount {
	text-align: right !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg thead th#customize-bulk-table-discount-percentage {
	text-align: right !important;
}

/* Body cell styling */
.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody td {
	color: var(--nn-color-black, #000) !important;
	text-align: left !important;
	padding: 8px 20px !important;
	font-weight: 200 !important;
	line-height: 1.5 !important;
	box-sizing: border-box !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody tr {
	position: relative !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody tr::after {
	content: '' !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 20px !important;
	right: 20px !important;
	height: 1px !important;
	background-color: var(--nn-color-gray-lighter, #e0e0e0) !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody td.wdr_bulk_range {
	text-align: center !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody td.wdr_bulk_table_discount {
	text-align: right !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody td.wdr_bulk_table_discount_amount {
	text-align: right !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody td.wdr_bulk_table_discount_percentage {
	text-align: right !important;
}

/* Remove any default table styling */
.awdr-bulk-customizable-table table.wdr_bulk_table_msg th span,
.awdr-bulk-customizable-table table.wdr_bulk_table_msg td span {
	color: inherit !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg .wdr_table_discounted_value {
	color: var(--nn-color-black, #000) !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg .wdr_bulk_table_discount_amount .wdr_table_discounted_price {
	color: var(--nn-color-black, #000) !important;
	display: block !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg .wdr_bulk_table_discount_percentage .wdr_table_discounted_value {
	color: var(--nn-color-black, #000) !important;
	display: block !important;
}

/* Ensure clean spacing between rows */
.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody tr {
	border-bottom: none !important;
	border-top: none !important;
}

.awdr-bulk-customizable-table table.wdr_bulk_table_msg tbody tr:first-child {
	border-top: none !important;
}

/* Remove any outline or focus styles */
.awdr-bulk-customizable-table table.wdr_bulk_table_msg *:focus {
	outline: none !important;
	box-shadow: none !important;
}

/* Disclaimer styling */
.awdr-bulk-discount-disclaimer {
	padding: 8px 20px 0 20px !important;
	font-size: 12px !important;
	color: var(--nn-color-gray-light, #999) !important;
	font-weight: 300 !important;
	line-height: 1.4 !important;
}
