﻿html, body, div, section, select, input {
    font-size: 24px;
}

body {
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.2);
    min-height: 100vh;
    position: absolute;
}

form {
    box-sizing: inherit;
    width: inherit;
}

section {
    box-sizing: inherit;
    justify-items: center;
    width: inherit;
}

div {
    box-sizing: inherit;
    width: inherit;
/*    margin: inherit;
*/}

/*select {
    min-width: fit-content;
}*/

/*buttons*/
input[type=submit] {
    width: 90%;
    min-width: fit-content;
    font-size: inherit;
    text-align: center;
    font-weight: bold;
    height: 3em;
    margin: 2% 2% 2% 2%;
    background-color: deepskyblue;
}

.clstextImageAlign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: end;
    margin: 0;
}

    .clstextImageAlign img {
        width: 60%;
        height: auto;
    }

    .clstextImageAlign span {
        text-align: end;
        font-weight: bold;
        padding: 1.5em 0;
    }

.clsTwoCols {
    display: grid;
    justify-content: center;
    grid-template-areas: "a b" "a b";
    align-items: center;
    column-gap: 2%;
    row-gap: 10%;
    margin: 5%;
}

    .clsTwoCols input {
        width: 100%;
        height: 1.5em;
    }

        .clsTwoCols input[type=checkbox] {
            width: 1em;
            height: 1em;
        }

.clsTwoColsFirstCol * {
    justify-self: end;
}

.clsTwoColsSecondCol {
    justify-self: start;
}

.category-heading {
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    float: right;
    width: contain;
}

    .category-heading label {
        float: right;
        font-weight: bold;
        margin-right: 1%;
    }

.auto-style2 {
    height: 40px;
}

.auto-style3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    float: right;
    font-weight: bold;
    margin-right: 1%;
}

.auto-style4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 2em;
}

.auto-style5 {
    height: 2em;
}

.rowStyle {
    background-color: lightcyan;
    color: darkblue;
    font-style: italic;
}

.alternatingRowStyle {
    background-color: paleturquoise;
    color: darkblue;
    font-style: italic;
}

.headerStyle {
    background-color: lightcyan;
    color: mediumblue;
}

.tableRowStyle {
    background-color: lightcyan;
    color: darkblue;
    font-style: italic;
}

.tableAlternatingRowStyle {
    background-color: paleturquoise;
    color: darkblue;
    font-style: italic;
}

.tableHeader {
    background-color: lightcyan;
    color: mediumblue;
}

table {
    border-collapse: collapse;
}

tr.border-bottom td {
    border-bottom: 1pt solid #000000;
}

.big-warning-1 {
    font-size: xx-large;
    font-weight: bold;
    color: maroon;
    background-color: yellow;
}

.test-warning-1 {
    font-size: 1em;
    font-weight: bold;
    color: maroon;
    background-color: yellow;
    text-align: center;
}

.test-warning-2 {
    font-size: 2em;
    font-weight: bold;
    color: maroon;
    background-color: yellow;
    text-align: center;
}

.bg-red {
    background-color: palevioletred
}

.bg-green {
    background-color: lightgreen
}

.upArrowStyle {
    background-image: url("img/uparrow_tiny.jpg");
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position: right;
}

.downArrowStyle {
    background-image: url("img/downarrow_tiny.jpg");
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position: right;
}

.explanation {
    font-size: smaller;
    font-weight: bold;
    background-color: lightgreen;
}

.explanation2 {
    font-size: larger;
    font-weight: bold;
    background-color: red;
}

.clsDeleteButton {
    background-color: red !important;
    height: 5vh !important;
    width: 5vh !important;
    font-size: 32px !important;
}

.clsInsertButton {
    background-color: lawngreen !important;
    height: 5vh !important;
    width: 5vh !important;
    font-size: 32px !important;
}

