::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #21252b;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
@font-face {
    font-family: VazirCodeX;
    src: url('./fonts/VazirCodeX.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

*{
    font-family: Vazirmatn, sans-serif;
}
*{
    padding: 0;
    margin: 0;
    border-spacing: 0;
}
body{
    background: #282c34;
    color: white;
    direction: rtl;
}

#msg-box{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 0, 0.59);
    max-height: 140px;
}

#msg-box button{
    width: 100px;
    border: 1px solid #ffffff22;
    border-radius: 7px;
    background: #21252b;
    color: yellow;
}
#msg-box textarea,#msg-box input{
  width: 100%;
    background: #00000011;
    border: 1px solid #ffffff22;
    border-radius: 7px;
    color: white;
}

#msg-box input{
    padding: 1rem;
}
#msg-box textarea{
    height: 100px;
}

#msg-box textarea:focus{
    outline: none;
    border-color: rgba(255, 255, 0, 0.55);
}

#chat{
    border: 1px solid black;
    border-radius: 7px;
    height: calc(100dvh - 150px);
    margin: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
}

#chat li {
    padding: .5rem .5rem 1.2rem;
    border: 1px solid #ffffff75;
    width: 70%;
    margin: 5px;
    border-radius: 7px;
    position: relative;
    float: right;
    margin-bottom: 1rem;
    background: #21252b;
}
#chat li.own{
    float: left;

}

#chat li.join{
    background: rgba(124, 252, 0, 0.2);
}
#chat li.leave{
    background: rgba(252, 0, 88, 0.2);
}

#chat li i{
    display: block;
    width: max-content;
    padding: 3px 20px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.94);
}
#chat li .Admin{
    background: goldenrod;
    color: black;
}
#chat li .Admin:before{
    content: "[Admin]";
}

#chat li time{
    position: absolute;
    left: 5px;
    bottom: 3px;
    font-size: 12px;
    opacity: .5;
}