/* Basic layout and bars */
html,
body {
    height: 100%;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin: 0;
    color: #111;
    background: #f2f4f6
}

.topbar,
.bottombar {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 10px 18px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10
}

.topbar {
    top: 0
}

.bottombar {
    bottom: 0;
    justify-content: space-between
}

.content {
    max-width: 860px;
    margin: 88px auto 76px;
    padding: 28px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04)
}

.logo {
    height: 40px
}

.logo-small {
    height: 48px
}

.links {
    list-style: none;
    padding: 0;
    margin: 12px 0 0
}

.links li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0
}

.links a {
    color: #0366d6;
    text-decoration: none;
    font-weight: 500
}

.links a:hover {
    text-decoration: underline
}

.company {
    font-weight: 600
}

@media (max-width:520px) {
    .content {
        margin: 96px 12px 92px;
        padding: 18px
    }

    .logo {
        height: 34px
    }

    .logo-small {
        height: 24px
    }
}