@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
    font-family: "Roboto", sans-serif;
}

header {
    padding: 0.25rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

header .logo {
    width: 6rem;
    height: 1.5rem;
}

header .breadcrumbs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

header .breadcrumbs .chevron {
    height: 1em;
}

header .breadcrumbs a {
    text-decoration: none;
    color: black;
}

main {
    padding: 0 0.625rem;
}

ul {
    padding-left: 1.5rem;
    margin: 0;
}

li {
    margin: 0.125rem 0;
}

a {
    color: #1e3a8a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 1.875rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.changelog h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.changelog code {
    font-family: "Roboto Mono", monospace;
    background: #e6e2e2;
    padding: 0 0.25rem;
    border-radius: 4px;
    line-height: 1.4em;
}

.changelog pre:has(code) {
    padding: .075rem 1rem;
    background: #f5f5f5;
    border-radius: 4px;
    line-height: 1.4em;
    border: 1px solid #a59e9e;
    width: fit-content;
}

.changelog pre code {
    padding: 0;
    background: inherit;
}
