/* Sakura.css v1.0.0
 * ================
 * Minimal css theme.
 * Project: https://github.com/oxalorg/sakura
 *
 * Modified by Pierre Lairez (2018-09), Marc Mezzarobba (2025-08)
 */
/* Body */

html {
    font-family: serif;
}

body {
    line-height: 1.3;
    margin: 0 0 0 2rem;
    padding: 1rem 2rem;
    max-width: 40em;
    min-width: 32em;
    background-color: #ffffff;  /* #f9f9f9; */
}

section {
    margin-top: 2em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
}


small, sub, sup {
    font-size: 75%; }

hr {
    border-color: #6b7a8f; }

a {
    text-decoration: none;
    color: #6b7a8f; }
a:hover {
    color: #f7882f;
    border-bottom: 2px solid #4a4a4a; }

ul {
    padding-left: 1.4em; }

li {
    margin-bottom: 0.4em;
    margin-top: 0.4em;
}

nav ul {
    list-style: none;
}

dt {
    margin-top: .8em;
}

dd {
    margin-left: 1.4em;
}

figure {
    padding: 1em;
    margin-left: 1em;
}

figcaption {
    font-style: italic;
    margin: .8em 0em;
}


img {
    max-width: 100%;
    }

/* Sideboxes */

blockquote {
    /* border: .2rem dotted #dcc7aa; */
    font-size: 85%;
    /* font-style: italic; */
    padding: 0 1rem;
    margin: 1em 0;
}

@media (min-width: 60rem) {
    body {
        margin: 0 0 0 28rem;
    }

    figure,
    blockquote,
    div.sourceCode {
        float: left;
        margin: 0 1rem 1rem -28rem;
        width: 26rem;
        clear: both;
    }

    figure,
    blockquote {
        margin: 0em 1rem 1rem -28rem;
        width: 25rem;
    }
}

blockquote em {
    font-style: normal;
}

.question {
    padding-left: 1.6em;
    margin-left: -2rem;
    border-left: .4em #f7882f solid;
}


/* Pre and Code */
pre {
    /* background-color: lightyellow; */
    font-size: small;
    border: lightgray dotted 2pt;
    display: block;
    padding: 1em 1em;
    overflow-x: auto;
}

code {
    color:#3465a4;
    font-size: 100%;
    white-space: pre-wrap;
}

pre > code {
    white-space: pre; }



/* Tables */
table {
    text-align: justify;
    width: 100%;
    border-collapse: collapse; }

td, th {
    padding: 0.5em;
    border-bottom: 1px solid #f1f1f1; }

/* Buttons, forms and input */
input, textarea {
    border: 1px solid #4a4a4a; }
input:focus, textarea:focus {
    border: 1px solid #6b7a8f; }

textarea {
    width: 100%; }

.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: #6b7a8f;
    color: #f9f9f9;
    border-radius: 1px;
    border: 1px solid #6b7a8f;
    cursor: pointer;
    box-sizing: border-box; }
.button[disabled], button[disabled], input[type="submit"][disabled], input[type="reset"][disabled], input[type="button"][disabled] {
    cursor: default;
    opacity: .5; }
.button:focus, .button:hover, button:focus, button:hover, input[type="submit"]:focus, input[type="submit"]:hover, input[type="reset"]:focus, input[type="reset"]:hover, input[type="button"]:focus, input[type="button"]:hover {
    background-color: #f7882f;
    border-color: #f7882f;
    color: #f9f9f9;
    outline: 0; }

textarea, select, input[type] {
    color: #4a4a4a;
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    margin-bottom: 10px;
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box; }
textarea:focus, select:focus, input[type]:focus {
    border: 1px solid #6b7a8f;
    outline: 0; }

input[type="checkbox"]:focus {
    outline: 1px dotted #6b7a8f; }

label, legend, fieldset {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600; }
