:root{
    --background-color: rgb(33, 35, 35);
    --header-color: rgb(52, 152, 219);
    --sidebar-color: rgb(53, 60, 72);
    --scrollbar-color: rgb(255, 255, 233);
    --scrollbarhover-color: rgb(200, 200, 200);
    --sidebutton-color: rgb(40, 40, 40);

    --button-color: rgb(53, 60, 72);
    --button2-color: rgb(53, 60, 72,0.3);

    --player-color: rgb(250,190,88);
    --entity-color: rgb(148,124,176);
    --weapon-color: rgb(246, 36, 89);
    --vehicle-color: rgb(27, 188, 155);
    --info-color: rgb(236,100,75);
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: var(--background-color);
    overflow-x: hidden;
}

header {
    position: relative;
    display: flex;
    background: var(--header-color);
    height: 47px;
    align-items: center;
}

header h1 {
    margin-left: 10px;
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
}

header .steamdiv {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
    right: 0;
    position: absolute;
    margin-right: 30px;
    height: 21px;
}

header .steamdiv a {
    padding: 5px;
    color: white;
}

header .steamdiv a:hover {
    border-radius: 5px;
}

.avatar {
    border-radius: 50%;
    margin-right: 8px;
    border: 2px white solid;
}

.row {
    display: flex;
    height: 94.8vh;
}

.categoryList {
    width: 250px;
    background: var(--sidebar-color);
    padding: 10px;
    overflow: auto;
}
/* width */
.categoryList::-webkit-scrollbar {
    width: 7px;
}

/* Track */
.categoryList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--sidebar-color); 
}

/* Handle */
.categoryList::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color); 
}

/* Handle on hover */
.categoryList::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbarhover-color); 
}

.category {
    width: 100%;
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: x-small;
    text-align: center;
}

.category h1{
    background: rgb(255, 0, 0);
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
}

.category .module {
    position: relative;
    transition: 0.2s;
}
.category .module .selected {
    position: absolute;
    margin-left: 5px;
    width: 98%;
    height: 3px;
    bottom: 0;
    background: var(--header-color);
}

.category button{
    width: 100%;
    padding: 3.8px;
    padding-left: 15px;
    background: var(--sidebutton-color);
    border: none;
    color: rgb(200, 200, 200);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.category button:hover{
    color: white;
}

.leftBar {
    position: absolute;
    width: 5px;
    height: 100%;
    background: rgb(255, 0, 0);
}

/* RightSide */
.rightSide {
    display: grid;
    width: 100%;
    border: 1px solid gray;
}

/* Pagination */
.pagination {
    display: flex;
    background: var(--button-color);
    padding: 15px;
    justify-content: center;
}

.pagination p {
    color: rgb(255, 255, 255);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
    align-self: center;
}

.pagination button {
    padding: 5px;
    border: 0;
    background: none;
    color: rgb(200, 200, 200);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.pagination button:hover {
    color: rgb(255, 255, 255);
}

.pagination input {
    margin-left: 10px;
    background: transparent;
    color: #fff;
    border: 0;
    outline: 0;
    font-size: 1rem;
    border-bottom: 2px solid #9b9b9b;
}

/* LOGS */
.LogsList {
    width: 100%;
    overflow: auto;
}

/* width */
.LogsList::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.LogsList::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--sidebar-color); 
}
 
/* Handle */
.LogsList::-webkit-scrollbar-thumb {
  background: var(--scrollbar-color); 
}

/* Handle on hover */
.LogsList::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbarhover-color); 
}

.LogsList .log {
    display: flex;
    padding: 8px;
    background: var(--button-color);
    margin-bottom: 6px;
}
.LogsList .log:nth-child(even) {
    background-color: var(--button2-color);
}
.LogsList .log p {
    width: 20%;
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    text-align: center;
    align-self: center;
}
.LogsList .log .plog {
    width: 100%;
    text-align: left;
    margin-left: 25px;
    word-break: break-word;
}

@media screen and (max-width: 1070px)  {
    .rightSide {
        display:block;
    }
    .row {
        display: block;
    }
    .categoryList {
        width: 100%;
        padding: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        overflow: auto;
        overflow-x: hidden;
    }
    .LogsList {
        padding: 0px;
        padding-top: 5px;
    }
    .LogsList .log {
        word-break: break-word;
        padding: 5px;
    }
    .LogsList .log p {
        width: 30%;
        font-size: 0.9rem;
        margin-left: 5px;
    }
    .LogsList .log .plog {
        margin-left: 5px;
    }
    #search{
        display:none;
    }
    #viewall{
        margin-left:6px!important;
    }
    .steamdiv{
        margin-right: 10px!important;
    }
}

a {
    color: var(--info-color);
    text-decoration: none;
    padding: 3px;
}

a:hover {
    background: rgba(100,100,100,0.8);
    border-radius: 50px;
}