.List_Container{
    container-name: general_list;
    container-type: inline-size;
    height: 100%;
    padding: 24px;
    row-gap: 24px;
    display: grid;
    width: 100%;
    background: #FFF;
    border-radius: 24px;
    grid-template-rows: repeat(3, auto);
}

/*Heading Container List End--------------------------------------------------------------------------------------------------*/
.List_Heading_Container{
}
    /*List Heading Content------------------------------------------------------------------------*/
    .List_Heading_Content{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 0 24px 0;
    }
    /*List Heading Content End------------------------------------------------------------------------*/

    /*List Heading Actions------------------------------------------------------------------------*/
    .List_Heading_Actions{
        width: 100%;
        justify-content: space-between;
        gap: 16px;
        display: flex;
        align-items: center;
    }
        /* Search Bar------------------------------------------*/
        .List_Heading_Actions .Search_Container{
            display: flex;
            justify-content: flex-start;
        }
        
        .List_Heading_Actions .Search_Wrapper {
            position: relative;
            width: 100%;
        }
        
        .List_Heading_Actions .Search_Wrapper .Search_Input {
            width: 100%;
            border-radius: 8px;
            font-family: Inter;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            border: none;
            outline: none;
            box-sizing: border-box;
            max-height: 40px;
            transition: border 0.3s;
        }
        
        .List_Heading_Actions .Search_Input.Content {
            padding: 10px 12px;
            background: #fff;
            color: #666;
            line-height: 20px;
            border: 1px solid #ccc;
        }
        
        .List_Heading_Actions .Search_Input.Header{
            padding: 8px 16px;
            background: rgb(245, 246, 247);
            color: rgb(102, 102, 102);
            border: 1px solid rgb(245, 246, 247)
        }
        
        
        .List_Heading_Actions .Search_Input:focus {
            border: 1px solid #3885FD ;
        }
        
        .List_Heading_Actions .Search_Icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }
        /* Search Bar End--------------------------------------*/
        /* Filter Button--------------------------------------*/
        .List_Heading_Actions .Filter_Btn{
            width: auto;
            border-radius: 8px;
            border: 1.5px solid #E7E7E7;
            align-items: center;
            gap: 6px;
            display: flex;
            padding: 8px;
            background: none;
            max-height: 40px;
        }
        
        .List_Heading_Actions .Filter_Btn span{
            color: var(--root-faint---on-light, #666);
            font-family: Inter;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 140%;
        }
        
        .List_Heading_Actions .Filter_Icon{
            height: 24px;
            width: 24px;
        }
        /* Filter Button End------------------------------------*/
    /*List Heading Actions End------------------------------------------------------------------------*/
/*Heading Container List End--------------------------------------------------------------------------------------------------*/

/*List Info Container--------------------------------------------------------------------------------------------------------*/
.List_Info_Container{
    width: 100%;
    border: 1px solid var(--grey-light);
    border-radius: 16px;
    overflow-y: auto;
    position: relative;
    scrollbar-gutter: stable overlay; /* keeps layout stable + overlays scrollbar */
}

/*List Header -----------------------------------------*/
    .List_Row_Header{
        background-color:var(--grey-off-white) ;
        padding: 12px 0;
        position: sticky;
        top: 0;
        border-bottom: 1px solid #E7E7E7;
        display: flex;
        width: 100%;
    }

    .List_Row_Header .List_Cell:not(:first-of-type) {
        border-left: 2px solid var(--grey-light);
    }

    .List_Row_Header .List_Cell{
        padding: 0 20px 0 12px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .List_Row_Header label{
        color: var(--Neutral-800, #454545);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        font-family: Inter;
        line-height: 20px; /* 142.857% */
        letter-spacing: 0.1px;
    }

    .List_Row_Header .Arrow_Cell_Container{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding: 0;
    }

    .Arrow_Cell_Container .Arrow_Up{
    }               

    .Arrow_Cell_Container .Arrow_Down{
    }

    .List_Row_Header .Header_Action_Cell{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
/*List Header End---------------------------------------*/

/*List Info Content ---------------------------------------*/
    .List_Row_Content:not(:first-of-type) {
        border-top: 1px solid #E7E7E7;
    }

    .List_Row_Content{
        display: flex;
        width: 100%;
        height: auto;
    }

    .List_Row_Content .Checkbox_Cell{
        display: flex;
        justify-content: center;
        align-items: center; 
    }

    .List_Cell{
        display: flex;
        justify-content: space-between;
        flex: 1 1 0;        /* default: share remaining space equally */
        min-width: 0;
        padding: 12px;
        text-overflow: ellipsis;
        font-family: Inter, serif;
        letter-spacing : 0.14px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        overflow: hidden;
        color: var(--Neutral-800, #454545);
        line-height: 150%;
    }
    
    .List_Row_Content .List_Cell{
        flex-direction: column;
        height: auto;
        padding: 12px 12px 12px 14px;
        justify-content: space-between;
    }

    .List_Row_Content .Content_Action_Cell{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12%;
    }

    .List_Row_Content .Content_Action_Cell button{
        background: none;
        outline: none;
        border: none;
    }
    /*Status ----------------------------------------*/
    .Status_Container{}
    .Status_Container .Status{
            padding: 6px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 500;
            width: auto;
        }
        .Status_Container .Status.booked {
            background-color: #FFD1C4; /* red */
            color: #FF4713;
        }
        
        .Status_Container .Status.available {
            background-color: #E1FDFE; /* green */
            color: #00C16A;
        }
        .Status_Container .Status.active {
            background-color: #D8E3F8;
            color: #3885FD;
        }
        .Status_Container .Status.inactive {
            background-color: #FFD1C4;
            color: #FF4713;
        }
    /*Status End----------------------------------------*/
/*List Info Content End ---------------------------------------*/
/*List Info Container---------------------------------------------------------------------------------------------------*/

/*Page Index ----------------------------------------------------------------------------------------------------------*/
.List_Footer_Container{
    width: 100%;
    height: auto;
    /*max-height: 60px;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

.Pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    width: 100%;
}

.Pagination .Page_Status{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Neutral-500, #737373);
    /* Text/Text Reguler/text sm */
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    gap: 4px;
}

.Pagination .Pagination_Number{
    color: #1A71F6;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.Pagination .Total_Pages{
    color: var(--Neutral-500, #737373);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

.Pagination .Arrow_Container{
    display: flex;
    gap: 10px;
    
}

.Arrow_Container .Pagination_Number2{
    display: flex;
    border-radius: 8px;
    border: 1px solid var(--Neutral-300, #B0B0B0);
    padding: 4px 6px 4px 8px;
    color: var(--Neutral-800, #454545);
    font-family: Inter;
    font-size: 14px;
    align-items: center;
    max-height: 26px;
}

.Arrow_Container .Page_Status2{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Neutral-800, #454545);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    gap: 4px;
}


.Arrow_Btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    padding: 4px 6px;
    border: 1px solid var(--Neutral-300, #B0B0B0);
    border-radius: 8px;
    background: none;
    max-height: 26px;
}
/*Page Index End ------------------------------------------------------------------------------------------------------*/






























