.listview-container {
    display: grid;
    grid-template-columns: 23% auto;
    height: 78vh;
    padding-bottom: 3vh;
    margin-top: 5px;
    padding-top: 0;
    width: 100%;
    border-radius: 10px !important;
    transition: 500ms;
    z-index: 2;
}

.listview-container--closeSidebar {
    grid-template-columns: 0% auto;
}

.lv-table-container {
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    z-index: 2;
}

.lv-table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    background-color: #f9f6f6;
    border-radius: 0.5rem;
    z-index: 2;
}


.lv-table thead {
    background-color: #cbd5e0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;

}

.lv-table th {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
    text-align: center;
    border-color: #8b8d90;
    z-index: 2;
}

.lv-table td {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    height: 4.5rem;
    white-space: normal;
    font-size: 0.875rem;
    color: #1a202c;
    position: relative;
    z-index: 2;
}

.lv-table td span {
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

@media(max-width: 500px){

    .listview-container {
        grid-template-columns: 100% 0%;
    }

    .listview-container--closeSidebar {
        grid-template-columns: 0% 100%;
    }

    .lv-table-container {
        border-radius: 0rem;

    }
    
}
