body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #222;
    display: grid;
    grid-template-rows: 48px 1fr; /* topbar + conteúdo */
    grid-template-areas: "topbar" "content";
    height: 100vh;

}
#top-bar {
    grid-area: topbar;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0 20px;
    z-index: 10;
}

#top-bar img {
    margin-top: 8px;
    height: 32px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

#top-bar .top-links a {
    color: #333;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

#top-bar .top-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    #top-bar .top-links {
        margin: auto;
    }
    #top-bar .top-links a {
        margin: 0 10px;
    }
    #top-bar a:not(.top-link-essential) {
        display: none;
    }
}

#redoc {
    grid-area: content;
    overflow: auto;
    height: 100%;
}

/*.redoc-content redoc, .redoc-content #redoc {*/
/*    display: block;*/
/*    height: 100%;*/
/*}*/

.changelog-content {
    max-width: 800px;
    margin: 100px auto 60px auto; /* offset for fixed bar */
    padding: 0 20px;
}

.changelog-content h1, h3 {
    font-family: 'Montserrat', sans-serif;
}
.changelog-content {
    padding-bottom: 100px;
}

.changelog-content code {
    background: #f5f5f5;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 13px;
}
.changelog-content ul li {
    margin-bottom: 5px;
}
.changelog-content ul li.highlight {
    background: #f9f1c6;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}
