.file-card {
    align-items: center;
    margin-bottom: 0.5em;
    padding: 1em;
    display: flex;
    flex-direction: row-reverse;
    background: #212121;
    border-radius: 4px;
    border: none;
    transition: none;
}

input.search{
    color: #FFF;
    background: #0e0e0e;
    display: block;
    padding: 1em;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    margin-bottom: 0.5em;
    width: calc(100% - 1.5em);
}

input.search:focus-visible{
    outline: none;
}

.file-card:nth-of-type(even)
{
    background: #181818;
}

.file-card:hover{
    cursor:pointer;
    box-shadow: none;
    outline: 2px solid #7b7b7b;
    outline-offset: -2px;
    transition: none;
}

.file-card span {
    font-size: 18px;
    text-align: center;
    font-family: 'Roboto Condensed';
    background: tomato;
    height: 35px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 0;
    line-height: initial;
}

.file-card:last-of-type()
{
    margin-bottom: 0;
}

.file-card input[type="text"] {
    padding: 0;
    margin: 0;
    font-size: 1em;
    background: none;
    border-radius: 0;
    width: 100%;
    display: block;
    position: relative;
}

.file-card input[type="text"]:focus-visible {
    outline: none;
}

.file-card>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#file-list{
    padding-right: 1em;
    margin-top: 1em;
}

.file-card p{
    margin: 0;
    font-size: 1em;
    color: #fff;
    line-height: normal;
}

.file-card em {
    font-style: normal;
    font-size: smaller;
    margin: 0;
    padding: 0;
    line-height: initial;
    opacity: 0.5;
}

#file-list::-webkit-scrollbar {
    width: 8px;
    background: none;
}
#file-list::-webkit-scrollbar-thumb {
    background: #5f5f5f;
    border-radius: 10px;
}

.page-button{
    background: #1e1e1e !important;
    color: #ffffff !important;
    padding: 1em !important;
    outline: 2px solid #1e1e1e;
}
.page-button:hover{
    background: #fff !important;
    outline: 5px solid #fff;
    color: #1b1b1b !important;
    border-radius: 0;
}
.page-button.active{
    background: tomato !important;
    outline: 5px solid tomato;
    color: #fff !important;
    border-radius: 0;
    text-decoration: none;
}
#pages{
    display: flex;
    gap: 1em;
}

#msg{
    opacity: 0;
    transition: all 0.2s;
    display: none;
    position: absolute;
    align-items: center;
    justify-content: center;
    z-index: 1006;
    background: #FFF;
    color: #141414;
    width: fit-content;
    padding: 1em 2em;
    height: fit-content;
    bottom: 0;
    outline-offset: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#msg.animate{
    animation:send-msg 2s;
    -webkit-animation:send-msg 2s;
    display: flex;
}

@keyframes send-msg {
    0% {
        opacity: 0;
    }
    5%{
        opacity: 1;
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}