@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
* {
    font-family: 'Inconsolata', monospace;
    font-size: 19px;
}
#codes {
    background: #efefef;
    border-radius: 12px;
    display: inline-block;
    padding: 7px 8px;
    box-sizing: border-box;
    line-height: 24px;
}
b {
    font-size: 32px;
}
#right {
    overflow-y: auto;
    height: 100vh;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
#right:-webkit-scrollbar {
    display: none;
}
body {
    display: flex;
    flex-direction: row;
    margin: 0;
    overflow: hidden;
}
#toli {
    display: block;
    background: #ddd;
    color: #000;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
    margin: 0;
    user-select: none;
    text-decoration: none;
    font-size: 14px;
}
#toli:hover {
    background: #00aaff;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}
#left {
    top: 0;
    position: sticky;
    width: 200px;
    background: #ddd;
    height: 100vh;
    margin: 0;
}