/*
 IDESwiftPackageReadMeStyles.css

 Copyright © 2021 Apple Inc. All rights reserved.
 */

:root {
    color-scheme: light dark;
    --content-margin-top: 8px;
    --content-margin-bottom: 8px;
    --content-margin-left: 20px;
    --content-margin-right: 20px;
    --content-margin-paragraph: 22px;
    --link-color: #0068DA;
}

@media (prefers-color-scheme: dark) {
    :root {
        --link-color: #419CFF;
    }
}

html * {
    font-size: var(--system-regular-font-size);
    font-family: -apple-system;
}

body {
    font-family: -apple-system;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: -0.08px;
    color: -apple-system-label;
    -webkit-font-smoothing: subpixel-antialiased;
    margin-top: var(--content-margin-top);
    margin-bottom: var(--content-margin-bottom);
    margin-left: var(--content-margin-left);
    margin-right: var(--content-margin-right);
    /*
     Not setting the background color makes the HTML follow the window background.
    background-color: -apple-system-text-background;
    */
}

a {
    text-decoration: none;
    color: var(--link-color);
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: -apple-system-label;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}


h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 22px;
    letter-spacing: 0.34px;
}

/*h1:first-of-type {
    display: none;
}*/

h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 18px;
    letter-spacing: 0.35px;
}

h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 16px;
    letter-spacing: -0.41px;
}

h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 15px;
    letter-spacing: -0.24px;
}

h5 {
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 15px;
    letter-spacing: -0.08px;
}

h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 13px;
    letter-spacing: -0.11px;
}

code {
    font-family: SFMono-Regular, menlo, courier;
    font-size: calc(100% - 1px);
    display: inline-block;
    background: -apple-system-odd-alternating-content-background;
    border: 1px solid -apple-system-quaternary-label;
    border-radius: 3px;
    padding: 0 5px;
}

pre > code {
    border-radius: 6px;
    margin-bottom: var(--content-margin-paragraph);
    display: block;
    padding: 12px;
    line-height: 18px;
    overflow-x: auto;
    overflow-wrap: normal;
    white-space: pre-wrap;
}

ul, ol {
    margin-left: 0px;
    padding-left: 2em;
}

ul {
    list-style: disc;
}

ul li, ol li {
    text-indent: 0;
    margin-bottom: 9px;
}

ul li ol, ul li ul, ol li ol, ol li ul {
    margin-top: 9px;
    margin-bottom: 9px;
}

hr {
    background-color: -apple-system-separator;
    margin: 1em 2em;
    border: 0;
    height: 1px;
}

blockquote {
    border-left: 3px solid -apple-system-quaternary-label;
    margin: 0;
    margin-bottom: var(--content-margin-paragraph);
    padding: 0;
    padding-left: calc(1.5em + 3px);
}

table {
    border-spacing: 0;
    margin-bottom: var(--content-margin-paragraph);
    text-align: left;
    width: max-content;
    max-width: 100%;
    overflow: auto;
}

table th {
    background-color: -apple-system-odd-alternating-content-background;
}

table td, table th {
    padding: 6px 12px;
    border: none;
    border-bottom: 1px solid -apple-system-separator;
}

table td:first-child, table th:first-child {
    padding-left: 2em;
}

table td:last-child, table th:last-child {
    padding-right: 2em;
}

img {
    max-width: 100%;
}
