html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 0px;
}

td {
    white-space: nowrap;
}

.loginbox {
    padding: 20px;
    width: 320px;
    height: 200px;
    margin-top: 10px;
    background-color: aliceblue;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    border-radius: 10px;
    font-weight: bold;
}

 .loginbox div {
     margin: 20px 0 20px 0;
 }

.filterbox {
    padding: 20px;
    width: 600px;
    height: 140px;
    margin-top: 10px;
    background-color: aliceblue;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    border-radius: 10px;
    font-weight: bold;
}

.resultbox {
    margin-top: 20px;
    width: calc(100vw - 0px);
    max-height: calc(100vh - 302px);
    overflow: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.errorresultbox {
    color: red;
    padding: 20px;
    height: 50px;
    width: 320px;
    margin-top: 5px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: spin 2s linear infinite;
}

.footer {
    position: fixed;
    padding: 10px 10px 0px 10px;
    bottom: 0;
    width: 100%;
    /* Height of the footer*/
    height: 90px;
    background: aliceblue;
    align-content: center;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

thead {
    position: sticky;
    top: 0;
    background-color: white;
}

