.woocommerce-cart .bol-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    margin-bottom: 20px;
    background-color: transparent;
}

.woocommerce-cart .bol-table th,
.woocommerce-cart .bol-table td {
    border-radius: 8px;
}

.woocommerce-cart .bol-table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

.woocommerce-cart .bol-table tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.woocommerce-cart .bol-table tbody tr {
    background-color: transparent !important;
}

.woocommerce-cart .bol-cart-actions-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bol-checkout-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
}

.bol-checkout-btn:hover {
    background-color: #218838;
}

.bol-clear-cart-btn {
    cursor: pointer;
}

.bol-clear-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}