.purchase-options {
    padding: 10px; /* Example padding */
    font-size: 14px; /* Example font size */
    background-color: #f0f0f0; /* Example background color */
    overflow: hidden; /* Hide overflow content */
    white-space: nowrap; /* Prevent text from wrapping */
}

.purchase-options > * {
    display: inline-block; /* Ensure child elements stay inline */
}

.purchase-options a {
    color: #007bff; /* Example link color */
    text-decoration: none; /* Remove underline */
    margin: 0 5px; /* Example margin */
}

.purchase-options a:hover {
    text-decoration: underline; /* Underline on hover */
}