.choices {
    margin-top: 5px;
    width: 100%;
}

.choices__inner {
    background-color: #fff;
    border: 1px solid #7e8993;
    border-radius: 4px;
    font-size: 14px;
    min-height: 30px; /* Match WP inputs */
    padding: 0; /* Reset padding, we'll handle it inside */
    display: flex;
    align-items: center;
}

.choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 0; /* Override default */
}

.choices__list--single {
    padding: 0 8px; /* Add horizontal padding here */
    width: 100%;
}

.choices__item {
    /* This is for the selected item text */
    line-height: 1.4;
}

.choices__placeholder {
    line-height: 1.4;
}


.single-product-update-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-product-update-form .choices {
    flex-grow: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.single-product-update-form #update_single_product_submit {
    margin-bottom: 0;
}

.stock-status-in-stock {
    color: #228B22; /* ForestGreen */
    font-weight: bold;
}

.stock-status-out-of-stock {
    color: #DC143C; /* Crimson */
    font-weight: bold;
}