/* Hide the dropdown and its label */
.wcsatt-options-product-dropdown-label,
.wcsatt-options-product-dropdown {display: none !important;}

/* Show and style the radio button list */
.wcsatt-options-product {
    display: block !important;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

/* Hide the one-time option since it's already in the prompt above */
.wcsatt-options-product li.one-time-option {display: none !important;}

/* Style the subscription options */
.wcsatt-options-product li.subscription-option {margin-bottom: 12px;}

.wcsatt-options-product li.subscription-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wcsatt-options-product li.subscription-option label:hover {
    border-color: #999;
    background-color: #f9f9f9;
}

.wcsatt-options-product li.subscription-option input[type="radio"] {margin-right: 10px;}
.wcsatt-options-product li.subscription-option input[type="radio"]:checked + .subscription-option-details {font-weight: bold;}
