.admin-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20rem;
    background-image: url(../media/misc/admin-banner.jpg);
    background-size: cover;
}
#adminTitle {
    font-size: 4rem;
    color: rgb(22, 22, 22);
    margin-bottom: 5rem;
}

.admin-view {
    width: 100%;
    display: flex;
    padding: 1rem;
}

.kb-form {
    width: 30%;
    border: 2px solid rgb(234, 234, 234);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.knowform {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgb(234, 234, 234);
    padding: 1rem;
}

.req-user-block {
    border: 2px solid rgb(234, 234, 234);
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.ver-table, th, td {
    border: 1px solid rgb(234, 234, 234);
    padding: 0;
    margin: 0;
}

.ver-table {
    width: 90%;
}

.tuser {
    width: 20%;
}
.temail {
    width: 50%;
}
.tver {
    width: 10rem;
}
.tbut {
    width: 10rem;
}
.kw-inpoption {
    display: flex;
    padding-bottom: 1rem;
}
.kw-inpoption input {
    width: 25rem;
}

.labelname {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 10rem;
}

@media only screen and (max-width: 420px) {
    .admin-view {
        flex-direction: column;
    }
    #adminTitle {
        color: white;
        text-align: center;
    }
    .kb-form {
        width: 100%;
    }
    .kw-inpoption {
        width: unset;
    }
    .req-user-block {
        width: 100%;
    }
    .req-user-block p {
        text-align: center;
    }
    .ver-table {
        font-size: 0.7rem;
    }
    .ver-table button {
        width: 2rem;
        height: 1rem;
        font-size: 0.4rem;
        padding: 0;
    }
}