:root {
    color-scheme: light only;
    --primary-color: #343E4B;
    --secondary-color: #00a0f5;
    --color-white: #ffffff;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: normal;
    src: url("Inter-VF.ttf");
}

body {
    margin: 0;
    padding: 0;
}

#api-header {
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 10;
}

#pacemaker-logo a {
    display: block;
    line-height: 0;
}

#pacemaker-logo img {
    width: 250px;
    margin-right: 15px;
}

#api-nav input {
    display: none; 
}

#api-nav input + label {
    display: inline-block;
    margin: 2px 0;
}

#api-nav input + label {
    background: var(--primary-color);
    color: var(--color-white);
    padding: 10px 12px;
    border-radius: 2px;
    font-size: 14px;
    transition: 0.2s;
}

#api-nav input:checked + label {
    background: var(--secondary-color);
}

#api-nav input + label:hover {
    cursor: pointer;
    background: #475a74;
}

#api-nav input:checked + label:hover {
    cursor: default;
    background: var(--secondary-color);
}
