/* THIS FILE CONTAINS STANDARD STYLES FOR SIMPLERP */
/* THIS PARTICULAR FILE CONCERNS WITH THE CSS OF THE ELEMENTS */
/* UNIVERSAL AND MAIN STYLES */
    html {
        font-size: 16px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        height: 100dvh;
    }

    head {
        display: none;
    }

    body {
        display: block;
        height: 100dvh;
        overflow: auto;
    }

    * {
        margin: 0;
        padding: 0;
        overflow: hidden;
        clear: both;
        display: block;
        position: relative;
        box-sizing: border-box;
    }

/* TABLE STYLES */
    table {
        display: table;
        border-collapse: collapse;
        border-spacing: 0;
    }

    table a {
        text-decoration: underline;
        color: rgb(128, 126, 255);
    }

    table a:hover{
        text-decoration: none;
    }

    table span {
        display: initial;
    }

    thead {
        display: table-header-group;
    }

    tbody{
        display: table-row-group;
    }

    tfoot {
        display: table-footer-group;
    }

    th, td {
        display: table-cell;
        padding: 0.5rem;
        text-align: left;
    }

    tr {
        display: table-row;
    }

/* THE REST OF THE ELEMENTS IN ALPHABETICAL ORDER */

    button {
        display: block;
        padding: 0.5rem 0.8rem;
        color: white;
        background: black;
        border: none;
        border-radius: 0.3rem;
        font-size: unset;
        cursor: pointer;
    }

    button span {
        font-size: 0.7rem;
    }

    button img {
        margin: 0 auto;
    }

    button:disabled {
        background-color: gray;
    }

    datalist{
        display: none;
    }

    div[contenteditable=true]{
        min-width: 100px;
    }

    form {
        display: flex;
        flex-direction: column;
    }

    header {
        background: white;
        box-shadow: 0px 10px 20px 1px #5b5b5b;
        padding: 0.5rem 1rem;
    }

    hr {
        margin: 0.5rem auto;
        border: none;
        height: 0.2rem;
        border: 0px solid black;
        border-radius: 50px;
        background-color: black;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    input {
        --input-border-colour: #c6c6c6;
        display: block;
        float: left;
        overflow: hidden;
        padding: 0.3rem;
        border-radius: 0.3rem;
        border: 1.5px solid var(--input-border-colour);
        font-size: 1.2rem;
        width: 100%;
    }

    input:focus-visible {
        box-shadow: 0px 0px 6px 0px var(--input-border-colour);
        outline: none;
    }

    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type=number] {
        appearance: textfield;
        -moz-appearance: textfield;
    }

    label {
        font-size: 1.2rem;
    }

    script {
        display: none;
    }

    select {
        padding: 0.3rem;
        font-size: 1.2rem;
        border-radius: .3rem;
        border: 1.5px solid #c6c6c6;
    }

    ul {
        border-top: 1px solid gray
    }

    ul li {
        padding: 1rem;
        font-weight: bold;
        border: 1px solid gray;
        border-top: none;
    }

    ul li:hover {
        background-color: #c6c6c6;
    }

    span.frac {
        display: inline-block;
        text-align: center;
        vertical-align: middle;
    }
    span.frac > sup, span.frac > sub {
        display: block;
        font: inherit;
        padding: 0 0.3em;
    }
    span.frac > sup {border-bottom: 0.08em solid;}
    span.frac > span {display: none;}