.iws-bulk-pricing-wrapper {
	margin-bottom: 24px;
}

/* Accordion Styling */
.iws-bulk-pricing-details {
	border: 1.5px solid #00A3DA;
	border-radius: 8px;
	padding: 14px 18px;
	background: #f4fbfe; /* Very light blue */
	transition: all 0.3s ease;
}
.iws-bulk-pricing-details:hover {
	box-shadow: 0 4px 12px rgba(0, 163, 218, 0.15);
}

/* Summary / Toggle */
.iws-bulk-pricing-summary {
	font-weight: 600;
	cursor: pointer;
	outline: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	color: #00A3DA;
	font-size: 15px;
}
.iws-bulk-pricing-summary::-webkit-details-marker {
	display: none;
}
.iws-toggle-icon {
	font-size: 11px;
	transition: transform 0.3s ease;
}
details[open] .iws-toggle-icon {
	transform: rotate(180deg);
}

.iws-bulk-pricing-content {
	margin-top: 14px;
}

/* Table Styling */
.iws-bulk-pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.iws-bulk-pricing-table th, 
.iws-bulk-pricing-table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}
.iws-bulk-pricing-table th {
	background: #00A3DA;
	font-weight: 600;
	color: #ffffff;
}
.iws-bulk-pricing-table tr:last-child td {
	border-bottom: none;
}
.iws-bulk-pricing-table tbody tr:hover {
	background-color: #f9f9f9;
}
