.chat {
    height: 300px;
    position: relative;
    background: #17171796;
    padding: 17px;
    box-sizing: border-box;
    margin-right: -50px;
    gap: 5px;
    flex-direction: column;
    display: flex;
    width: 55%;
    min-width: 150px;
    float: right;
}

.main-bar {
    position: relative;
    width: 100%;
}
  
#send-message-text {
    width: 100%;
}
  
.message-prompt {
    display: flex;
    width: 100%;
}
  
#send-message-button {
    padding: 0 5px;
    color: #74ff34;
    background: #076f12;
    cursor: pointer;
    user-select: none;
}
  
.message-prompt input {
    border: none;
    background: #6c6c6c;
    color: #fff;
    font: inherit;
    font-size: 13px;
}

.message-prompt input::placeholder {
    color: #eee;
}
  
.messages {
    height: 100%;
    overflow: scroll;
    gap: 5px;
    display: flex;
    flex-direction: column-reverse;
    overflow-x: hidden;
}
  
.message {
    font-size: 13px;
    gap: 5px;
}
  
.message-date {
    color: #9f9f9f;
    white-space: nowrap;
    margin-right: 5px;
}
  
.message-author {
    color: #74ff34;
    font-weight: bolder;
    margin-right: 5px;
}

.message {
    overflow-wrap: anywhere;
}
  

#latest-update {
    padding-left: 15px;
    border-left: 2px solid #fff;
    margin-left: 2px;
}


.asdasd {
    box-sizing: border-box;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 5px;
    border: lightyellow 1px solid;
    gap: 2px;
    font-weight: bolder;
    font-size: 20px;
    line-height: 20px;
}

.asdasd a {
    text-decoration: none;
    color: #000;
    font-family: sans-serif;
    vertical-align: middle;
    text-align: left;
    justify-items: center;
}

.asdasd a:hover {
    text-decoration: none;
}

.asdasd-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3px;
    border: 1px solid gray;
}

.asdasd-image {
    width: 100%;
}

.asdasd-site {
    flex-direction: row;
    display: flex;
    gap: 3px;
    opacity: 0.6;
    align-items: center;
    margin: 5px 0;
}

.asdasd-site-domain {
    height: 100%;
    display: block;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
}

.asdasd-site-icon {
    height: 13px;
    margin: 3px;
}

.asdasd-click {
    text-decoration: underline;
    color: blue;
}

.right-bar {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 180px;
    min-width: 150px;
    align-items: flex-end;
    right: 5px;
}