/* Standard css */

html
{
    min-height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

body
{
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    /* font-family: Palatino, Georgia, "Times New Roman", Times, serif; */
    /* font-family: Baskerville, "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif; */
    min-height: 100%;
    max-height: 100%;
    max-width: 60em;
    padding: 1px 1px 1px 1px;
    margin: 0.1em auto;
    font-size: calc(12px + (28 - 16) * ((100vw - 320px) / (1600 - 320)));
    background-color: white;
    color: black;
    text-align: left;
}

p
{
    font-size: 1.2em;
}

pre, code, kbd, samp, var, tt
{
    font-family: "Lucida Console", Monaco, monospace;
}

table {
    border-collapse: collapse;
}

table, tr, th, td {
    border: 0px solid black;
}

tr, th, td {
    padding: 1px;
    text-align: left;
    vertical-align: top;
}

.tabelleohnerand
{
    border: none;
}

.tabelleohnerand table, tr, th, td
{
    border: none;
}

hr {
    width: 90%;
    height: 3px;
    margin: auto auto;
    color: black;
    background: black;
    alignment: left;
}

.main {
    min-height: 100%;
    margin-bottom: 40px;
}

.divbox
{
    border: 1px solid black;
    padding: 0 0.3em 0 0.4em;
    margin: 0 0 0.5em 0;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: white;
}

.footer {
    position: fixed;
    left: inherit;
    bottom: 0;
    max-width: 60em;
    width: 99%;
    height: 30px;
    background-color: lightgrey;
    color: black;
    text-align: center;
}

.errorMessage
{
    font-weight: bold;
    color: red;
}

.button
{
    background-color: lightgrey;
    color: white;
    padding: 15px 32px;
    margin: 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    float: left;
    border: 1px solid black;
}

.buttonmini
{
    background-color: lightgrey;
    color: white;
    padding: 2px 2px;
    margin: 1px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    float: left;
    border: none;
}

.select-td, .textfield-td
{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    display: block;
    padding: 0 0;
    box-sizing: border-box;
}

.checkboxgroup{
    display: grid;
    grid-template-columns: 2em 8em;
    padding: 2px 2px;
    margin: 2px;
    width: available;
}
.checkboxgroup label{
    font-weight: normal;
    font-size: larger;
    padding: 2px 2px;
    margin: 2px;
    width: auto;
}

.grid-container-suche {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 0;
    white-space: nowrap;
    width: min-content;
}

.grid-suche-bezeichnung {
    text-align: left;
    font-weight: bolder;
    font-size: larger;
    vertical-align: center;
    border-collapse: collapse;
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 5px;
}

.grid-suche-suchfeld {
    text-align: left;
    align-self: baseline;
    border-collapse: collapse;
    padding: 5px;
    width: fit-content;
}

.grid-suche-select {
    width: fit-content;
    min-width: 100%;
}

.grid-suche-textfield {
    min-width: max-content;
}

.grid-suche-zeile {
    grid-column-start: 1;
    grid-column-end: 3;
}

.grid-suche-leerzeile {
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 10px;
    margin: 0;
}

.grid-suche-leerzeile-mini {
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 0.02em;
    margin: 0;
}

.contentbox
{
    padding: 5px 10px 5px 10px;
    display: grid;
    grid-template-columns: 1.61fr 1.00fr;
    grid-gap: 20px;
}

.contentlinks
{
    grid-column: 1 / 2;
    margin: 0.1em calc(0.1em + 10px) 0.1em 0.1em;
}

.contentrechts
{
    grid-column: 2 / 3;
    margin: 0.1em 0.1em 0.1em 0.15em;
}

.contentbild img
{
    width: 100%;
}

@media only screen and (max-width: 30em)
{
    .contentbox {
        grid-template-columns: 1fr;
    }

    .contentlinks {
        grid-column: 1;
    }

    .contentrechts {
        grid-column: 1;
    }

    .contentbild img
    {
        max-width: 100%;
    }
}

.textcenter {
    text-align: center;
}

/* dan  <br class="cb" /> an Stelle von <br clear="all" /> */
br.cb { clear: both; }
