/* Styles for Select Checkout in Cart plugin */
.shop_table .cart_item {
    position: relative;
    padding-left: 30px;
}

/* Checkbox container */
.item-selector {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    position: absolute;
    left: 6px;
}

/* Checkbox styling */
.checkout-selector, .select-all-checkbox {
    margin: 0;
    cursor: pointer;
    width: 24px !important;
    height: 24px !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
}

/* Select all container */
.select-all-container {
    margin-bottom: 15px;
    padding: 10px 6px;
    display: flex;
    align-items: center;
}

.select-all-container.select-all-bottom {
    margin-top: 15px;
    margin-bottom: 0;
}

.select-all-container label {
    margin-left: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Selected items summary styling */
.selected-items-summary {
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.selected-items-summary h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.selected-items-summary p {
    margin-bottom: 8px;
}

/* Highlight selected items */
tr.cart_item.selected {
    background-color: rgba(127, 84, 179, 0.1);
}


.cart_totals > h2, .cart_totals > .shop_table {
    display: none;
}

.woocommerce .cart_totals {
    display: flex;
    flex-direction: column-reverse ;
    padding: 0;
    background: none;
}

.selected-items-total {
    font-weight: 600;
    font-size: 1.2em;
    color: var(--tb-theme-color);
}

.cart-bottom.actions .continue-to-shop, .cart-bottom.actions .update {
    display: none;
}