/* Get Quote button */
.ifqc-quote-btn {
	background: #0f7a6b;
	color: #fff !important;
	border: none;
	padding: 10px 18px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
}
.ifqc-quote-btn:hover {
	background: #0c6155;
}

/* Pharma detail bullet list on single product page */
.ifqc-pharma-details {
	list-style: none;
	margin: 15px 0;
	padding: 0;
}
.ifqc-pharma-details li {
	padding: 4px 0;
	border-bottom: 1px dashed #eee;
}

/* Modal overlay */
.ifqc-modal-overlay {
	display: none;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
}
.ifqc-modal-overlay.active {
	display: flex;
}

.ifqc-modal-box {
	background: #fff;
	max-width: 480px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 30px;
	border-radius: 6px;
	position: relative;
}
.ifqc-modal-close {
	position: absolute;
	top: 12px;
	right: 18px;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}
.ifqc-modal-box h2 {
	margin-top: 0;
	font-size: 20px;
}
