html {
    color-scheme: dark !important;
}

body {
    background-color: #222426;
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: whitesmoke;
}

.banner {
    width: 100vw;
    height: 1vh;
    background-color: #5617A8;
    position: absolute;
    top: 0px;
    left: 0px;
}

#_app {
    position: absolute;
    top: 50px;
    left: 15%;
    width: 70%;
    /* height: 100%; */
}

.title {
    color: #8942E5;
}

.title>h1 {
    margin: 0px;
}

.title_line {
    color: #8942E5;
    border-bottom: 2px solid #5617A8;
    width: 2%;
    margin-bottom: 40px;
}

.nav {
    background-color: #5617A8;
    width: 100%;
    height: 50px;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    border-bottom: 2px solid #5617A8;
}

.tab {
    height: 100%;
    display: flex;
    align-items: center;
    color: whitesmoke;
    font-size: 1.1em;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
}

i {
    padding-right: 10px;
}

.active {
    background-color: #1B1D1E;
    color: #8942E5;
}

#search_box {
    margin-left: auto;
}

#search {
    background-color: transparent;
    background-image: none;
    border-color: none;
    outline-color: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #8942E5;
    box-shadow: none;
    width: 360px;
    font-weight: 700;
    color: rgba(232, 230, 227, 0.459);
    font-size: 14px;
    padding: 3px;
}

#search_button {
    visibility: hidden;
    display: block;
    color: rgb(137, 66, 229);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 4px;
    background-color: rgb(32, 35, 37);
    background-image: none;
    border-color: rgba(140, 130, 115, 0.2) !important;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.results_box {
    width: 100%;
    height: 110%;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #181A1B;
    border-radius: 6px;
    padding-top: 2px;
    padding-bottom: 2px;
}

#table {
    margin: 1%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 98%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #2c2b2e;
    border-bottom: none;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #2c2b2e;
    color: rgb(170, 170, 170);
    font-size: small;
}

.header {
    background-color: #5617A8;
    color: whitesmoke
}

.row1 {
    background-color: #1D1F20;
}

.row2 {
    background-color: #191B1C;
}

.cell {
    flex: 1;
    padding: 10px;
    overflow: hidden;
}

.user {
    max-width: 10%
}

.staff {
    max-width: 10%
}

.reason {
    min-width: 40%
}

.type {
    max-width: 5%
}

.duration {
    max-width: 5%
}

.date {
    max-width: 10%
}

#pages {
    display: flex;
    float: right;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.pages {
    background-color: #161718;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 4px;
    color: #8942E5;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#prev {
    padding-right: 10px;
}

#next {
    padding-left: 10px;
}

.dis {
    background-color: #1B1D1E;
    color: #6d39b1;
    cursor: not-allowed;
}

.loader {
    border: 16px solid #242424;
    border-radius: 50%;
    border-top: 16px solid #1e055a;
    margin-top: 20px;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}