html,
body {
    overflow-x: hidden;
}

.logout-btn {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent);
    cursor: pointer;
}

#bottomUser {
    color: var(--accent);
    font-weight: bolder;
    display: none;
}

.article-bottom {
    display: flex;
    align-items: center;
    transition: all 500ms linear;
}

.article-bottom.sticky {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bg);
    transition: all 500ms linear;
}

.back-btn.sticky {
    margin-left: auto;
}

.likes-btn.sticky {
    margin-left: 0;
    margin-right: 25px;
}

.likes-btn {
    font-size: 35px;
    font-weight: 500;
    background: transparent;
    color: var(--accent);
    border: none;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.likes-btn:hover {
    text-shadow: 2px 2px 10px var(--accent);
}

.likes-btn span {
    font-size: 12px;
    font-weight: normal;
}

pre>.topBox {
    font-family: monospace;
    cursor: pointer;
    color: var(--code-top-text);
    background-color: var(--code-bg);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

pre>.topBox>.copyBox {
    margin-right: auto;
    display: flex;
    align-items: center;
}

pre>.topBox>.checkBox {
    appearance: none;
    border-radius: 100%;
}

pre>.topBox>.checkBox::after {
    appearance: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    content: '↹';
    color: var(--code-checkbox-text);
    font-size: 15px;
    cursor: pointer;
    padding: 2px;
    border: 2px solid var(--bg);
    box-shadow: inset 0 0 0 4px var(--border);
}

pre>.topBox>.checkBox:checked::after {
    appearance: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--border);
    content: '⇥';
    color: var(--code-checkbox-text);
    font-size: 15px;
    padding: 2px;
    border: 2px solid var(--accent);
}

pre>.codeWrapper {
    position: relative;
    display: inline-block;
    overflow-x: auto;
    width: 100%;
}

pre>.codeWrapper>code>.codenum {
    display: inline-block;
    color: var(--code-num);
    background-color: var(--code-bg);
    position: sticky;
    left: 0;
    padding: 1px 0px;
}

pre>.codeWrapper>code>.no-select {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

pre {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: var(--code-bg);
    color: var(--text);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
    white-space: pre;
    overflow-x: auto;
    display: block;
    contain: inline-size;
}

pre>.codeWrapper>code {
    background: none;
    color: inherit;
    padding: 0;
    border: none;
}

#backHomeButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: 15px;
}

#backHomeButton>span {
    border-radius: 25px;
    color: var(--accent);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    background-image: url(../img/icon/community.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    -webkit-mask: url(../img/icon/community.png) no-repeat center;
    -webkit-mask-size: contain;
    mask: url(../img/icon/community.png) no-repeat center;
    mask-size: contain;
    background: var(--accent);
}

#backHomeButton>span:hover {
    opacity: 0.75;
}

.search-content {
    display: flex;
}

.search-content img {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    object-fit: cover;
    margin-left: 10px;
}

.search-content h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    #bottomUser {
        display: flex;
        margin-left: 25px;
    }
}