*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;    

    font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
}

html,body{
    width: 100%;

    scroll-behavior: smooth;

}

body{
    min-width: 300px;
   
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 100vh;

    background-color: white;
}


/*PAGE BODY*/
.PageBody{
    flex: 1;
    width: 90%;
   
    margin-top: 130px;
    padding: 20px 20px 60px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

    .CurrentFolderLocation{
        width: 100%;
        font-size: 30px;
        text-align: start;
        font-style: italic;

        color: rgb(41, 41, 41);;
        border-bottom: 2px solid #f3992a;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }

    .returnToRoot{
        font-size: 20px;
        text-decoration: none;
        text-align: center;
        color: rgb(41, 41, 41);;

        padding: 5px 5px 5px 5px;
        
        margin-top: 5px;
        margin-bottom: 5px;
        margin-right: 15px;
        margin-left: 15px;
    }

        .returnToRoot:hover{
            background-color: var(--barvaPozadiNavBaru);
            color: white;
            border-radius: 10px;
        }




    /* TABULKA SE SOUBORY */
    .FileTable{
        width: 100%;
        background-color: white;
        border-radius: 10px;
    }

        .InputArea{
            width: 100%;
            height: auto;

            display: flex;
            flex-direction: row;
            justify-content: start;
            align-items: center;

        }
            #filterInput{
                width: auto;
                height: 35px;
                padding: 5px 10px 5px 10px;
                margin-bottom: 5px;

                color: rgb(41, 41, 41);;
                font-size: 15px;

                border: 2px solid grey;
                border-radius: 10px;
                transition: 0.4s ease-in-out;
                font-style: italic;
            }

            #filterInput:focus{
                width: 100%;
                font-size: 18px;
                border: 2px solid grey;
            }

    .TableHead{
        background-color:rgb(202, 207, 216);
        color: rgb(41, 41, 41);;
    }

        /* NASTAVENÍ ŠÍŘKY SLOUPCŮ*/
        .TableHead tr{
            height: 60px;
        }

        .TableHead tr th:nth-child(1){
            width: 80px;
            border-top-left-radius: 10px;
        }

        .TableHead tr th:nth-child(3){
            width: 90px;
        }

        .TableHead tr th:nth-child(4){
            width: 150px;
        }

        .TableHead tr th:nth-child(5){
            width: 200px;
            border-top-right-radius: 10px;
        }

    .TableBody tr{
        height: 50px;
    }
        .TableBody tr:nth-child(even){
            background-color: rgb(219, 219, 219);
        }

        .TableBody tr:hover{
            background-color: rgb(197, 197, 197);
            font-weight: 900;
        }

        .TableBody tr td{
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .TableBody tr td:nth-child(2){
            padding-left: 10px;
        }

        .TableBody tr td:nth-child(2) a{
            text-decoration: none;
            color: rgb(41, 41, 41);
            
        }

        .TableBody tr td:nth-child(3){
            text-align: center;
            
        }

        .TableBody tr td:nth-child(4){
            text-align: center;
            
        }

        .TableBody tr td:nth-child(5){
            text-align: center;
        }

        .ReturnImg{
            width: 50px;
            height: 50px;

            display: block;
            margin: auto;
        }

            .ReturnImg img{
                background-color: white;
                padding: 2px 2px 2px 2px;
                border-radius: 10px;
                width: 100%;
                height: 100%;
            }

        .FileImage{
            width: 40px;
            height: 40px;
            border-radius: 10px;        
            display: block;
            margin: auto;

        }

    @media only screen and (max-width: 850px) {

        .PageBody{
            margin-top: 250px;
        }

        .TableHead tr th:nth-child(3), .TableBody tr td:nth-child(3){
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .TableHead tr th:nth-child(4), .TableBody tr td:nth-child(4){
            display: none;
        }

        .TableHead tr th:nth-child(5), .TableBody tr td:nth-child(5){
            display: none;  
        }
    }
    



    
