body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #222;
    color: #eee;
}

.hidden {
    display: none;
}

#status {
    margin: 16px auto;
    overflow: auto;
}

#status-html {
    width: 600px;
    display: flex;
    flex-direction: column;
    row-gap: 6px;

    padding: 16px;
    background-color: #17191f;
    color: #fff;
}

.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user .image {
    width: 46px;
    height: 46px;
}

.user .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.user .name {
    display: flex;
    flex-direction: column;
}

.user .display-name {
    font-weight: bold;
}

.user .username {
    color: #9baec8;
    font-size: 15px;
}

.content {
    font-size: 18px;
}

.content a {
    /* font-size: 14px; */
    color: #8c8dff;
    text-decoration: none;
}

.content a:visited {
    color: #8c8c8c;
}

.meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;

    color: #606984;
    font-size: 14px;
}

.meta > div {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
}

.meta .icon path {
    fill: currentColor;
}
