    /* For orders TABLE styling*/
    .order-companants-table{
        width: 100%;
        border: 1px solid gainsboro;
        border-radius: 3px;
        margin: 10px 0px;
    }

    .order-companants-table thead{
        background-color: rgb(219, 219, 219);
    }

    .order-companants-table tbody tr td{
        font-size: 13px;
    }
    
    tr .first{
        text-align: start;
        padding-left: 5px;
    }

    .fixed-tr-GG{
        position: sticky;
        left: 0;
        right: 0;
        background-color: #fff; /* Set the desired background color */
        border-bottom: 1px solid gray;
    }

    .fixed-tr-GG th{
        text-align: start;
        
        padding: 5px 0px;
        padding-left: 5px;

    }
    tbody tr:nth-child(even) {
        background-color: #f2f2f2; /* Set the background color for even rows */
    }

    tbody tr:nth-child(odd) {
        background-color: #ffffff; /* Set the background color for odd rows */
    }


    tbody tr td{
        padding-left: 5px;
    }

    thead tr .total, tbody tr .total{
        text-align: center;
        padding-left: 0px;
    }
    /* //For orders TABLE styling*/


.cart-cart-section {
    padding-bottom: 20px;
}