* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
  
html, body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    width: 100%;
    height: 100%;
    color: #434343;
}

a, a:visited, a:hover, a:active{
    text-decoration: none;
}

pre {
    padding: 2rem;
    background-color: #d1d1d1;
    margin: 2rem 0rem;
}

#wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0rem 2rem;
}

#logo{
    max-width: 30rem;
    margin: 2rem 0rem;
}

#fileInput{
    background-image: url('../images/searchicon.png'); /* Add a search icon to input */
    background-position: 0.6rem 0.8rem; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    width: 100%; /* Full-width */
    font-size: 1rem; /* Increase font-size */
    padding: 1rem 1.3rem 1rem 2.8rem; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    margin-bottom: 1rem; /* Add some space below the input */
    outline: 0;
}

#fileTable th input {
    width: 100%; /* Full-width */
    font-size: 1rem; /* Increase font-size */
    padding: 1rem; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    outline: 0;
}
  
#fileTable {
    border-collapse: collapse; /* Collapse borders */
    width: 100%; /* Full-width */
    border: 1px solid #ddd; /* Add a grey border */
    font-size: 1rem; /* Increase font-size */
}

#fileTable th{
    text-align: left; /* Left-align text */
    padding: 1rem; /* Add padding */
    cursor: pointer;
    outline: 0;
    white-space: nowrap;
}

#fileTable td {
    text-align: left; /* Left-align text */
    padding: 0.5rem 1rem; /* Add padding */
    white-space: nowrap;
}

#fileTable th:nth-child(2), #fileTable td:nth-child(2) {
    text-align: center;
}

#fileTable td div.language{
    padding: 0.5rem;
    background-color: #f1f1f1;
    cursor:pointer;
}

#fileTable td div.language:hover{
    padding: 0.5rem;
    background-color: #e30018;
    color:white;
}

#fileTable td div.download{
    padding: 0.5rem;
    background-color: #e30018;
    color:white;
    width: 100%;
    text-align: center;
}

#fileTable tr {
    /* Add a bottom border to all table rows */
    border-bottom: 1px solid #ddd;
}

#fileTable tr.header, #fileTable tr:hover {
    /* Add a grey background color to the table header and on hover */
    background-color: #f1f1f1;
}

.dataTables_length label{
    float: right;
    padding: 0rem 0rem 1rem 1rem;
}

.dataTables_length label select{
    outline: 0;
    padding: 0.5rem 0rem 0.5rem 0.5rem;
}

.dataTables_info{
    width: 100%;
    padding: 2rem 1rem 1rem 1rem;
    text-align:center;
    font-weight: bold;
}

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

.dataTables_paginate a{
    display:inline-flex;
    padding: 1rem;
    text-align:center;
    cursor: pointer;
    outline: 0;
    color: white;
    background-color: #e30018;
    margin: 0.5rem;
}

#links{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.8em;
}

#links a{
    margin-right: 0.5rem;
    color: #a8a8a8;
    margin: 1rem 0rem;
    padding: 0 0.5rem;
    text-decoration: underline;
}

#links a:hover{
    color: #434343;
}

#copyright{
    margin: 1rem 0rem 2rem 0rem;
    font-size: 0.8em;
    text-align: center;
    color: #a8a8a8;
}