@import url("https://a.thered.sh/assets/fonts/Roboto/font.css");
@import url("https://a.thered.sh/assets/fa/css/all.min.css");

* {
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #161616;
    color: white;
    font-family: "Roboto Thin";
}

.title {
    display: flex;
    flex-direction: row;
    width: fit-content;
    justify-content: left;
    margin: unset;
    font-size: 16px;
    padding: 20px 10px;
}

.title * {
    margin-left: 10px;
    margin-right: 10px;
}

.title img {
    width: 120px;
    /* margin-right: 10px; */
    display: inline-block;
    vertical-align: middle;
}

.title h1 {
    display: inline-block;
    font-family: "Roboto Light";
}

a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto Light";
    margin-left: 50px;
    width: fit-content;
}

a:hover {
    color: #ffffff;
}

i {
    margin-right: 10px;
}

.listing {
    display: flex;
    flex-direction: column;
    width: fit-content;
    padding: 20px 0px;
    border-radius: 5px;
    background-color: #252525;
    border: 1px solid #3a3a3a;
    box-shadow: 0px 0px 10px #00000080;
    font-family: "Roboto Regular";
}

.items {
    overflow-y: auto;
    height: calc(100vh - 300px);
    width: calc(100vw - 50px);
    margin-left: 0px;
}

.items::-webkit-scrollbar {
    width: 7px;
}

.items::-webkit-scrollbar-track {
    background: #252525;
}

.items::-webkit-scrollbar-thumb {
    background: #929292;
    border: 1px solid #929292;
    border-radius: 8px;
}

.items::-webkit-scrollbar-thumb:hover {
    background: #e7e7e7;
}

.items::-webkit-scrollbar-thumb:active {
    background: #e7e7e7;
}

.link-folder {
    color: #6ce2ff;
}

.link-link {
    color: #ffc46c;
}