/* Make price comparison rows shrink to content */
.ap-price-compare {
    display: flex;
    gap: 20px; /* space between site and amazon price */
    justify-content: flex-start;
  	align-items: flex-start;
	background-color: #F0F8FF;
    padding: 10px;
    border-radius: 5px;
}

.ap-store-row,
.ap-amazon-row {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* prevent breaking */
    width: auto !important; /* override any full-width rule */
    max-width: max-content;
	background-color: #ffffff;
}

.ap-price-compare .button {
	background-color: #f0f8ff;
	border-radius: 5px;
	border: 1px solid #053D7C;
}
.ap-amazon-price-value {
	color:#053d7c;
}
.ap-price-compare 