html .k-dialog .k-window-titlebar {
    padding-left: 17px;
}

.k-dialog .k-content {
    padding: 17px;
}

#filterText {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
}

.selectAll {
    margin: 17px 0;
}

#result {
    color: #9ca3a6;
    float: right;
}

#treeview {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #d9d9d9;
}

#openWindow {
    min-width: 180px;
}

#all_products_data {
    margin-top: 3%;
    padding: 1%;
    max-height: 300px;
    min-height: 300px;
    overflow: auto;
}


.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #a0c0e0;
    background-color: #e6f0fa;
    /* Match the container background color in the image */
    border-radius: 10px;
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #2c3e50;
}

.d-none {
    display: none;
}


.in_woocommerce_order_items th, .in_woocommerce_order_items td {
    padding: 15px;
    text-align: left !important;
}

.parent-product {
    font-weight: bold;
    background-color: #ffffff;
}

.child-product {
    padding-left: 20px;
    background-color: #d5d0d0;
}

.in_woocommerce_order_items {
    width: 100%;
    background: #fff;
    text-align: left !important;
}

.woocommerce_order_items {
    display: none !important;
}