/* 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: 100%;
    }

    head {
        display: none;
    }

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

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

/* MENU STYLES */
    nav {
        display: flex;
        justify-items: baseline;
    }

    nav a{
        text-decoration: none;
    }

/* 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;
    }

    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: calc(100% - 0.6rem);
        max-width: calc(100% - 0.6rem);
    }

    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;
    }