@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 2rem;
    max-width: 1000px;
}

h1 {
    margin-block: 0;
    font-size: 2rem;
}

h2 {
    margin-top: 0.2rem;
    font-size: 1.5rem;
}

ol, ul {
    margin: 0;
}

li {
    margin-block: 0.2rem;
    margin-left: 0.2rem;
}

p {
    margin-block: 0.2rem;
}

ol:not(.reset)>li::marker {
    content: counters(list-item, '.') '. ';
}

ol.subitems>li::marker, ol.forcereset>li::marker {
    content: initial;
}

ol.subitems {
    border-left: 1px solid grey;

    li {
        margin-left: calc(0.2rem - 1px)
    }
}

li.nothappen {
    text-decoration: line-through;
    opacity: 50%;
}

.notes {
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;

    em {
        font-style: normal;
    }
}

summary {
    text-decoration: underline dotted 0.05rem;
}

summary::marker {
    content: '[+] '
}

[open] > summary::marker {
    content: '[-] '
}

.approval {
    font-weight: bold;
    color: #4daf4a;
}

.refusal {
    font-weight: bold;
    color: #e41a1c;
}

img {
    max-width: 100%;
}