

#minimenu
    {
    font-size: 24px;
    position: fixed;
    right : 0px;
    bottom : 0px;
    border: 3px solid #555;
    background-color: #FA5;
    color: #000;
    }

/* TABELLEN */

table
    {
    border: 0;
    padding: 0;
    margin:0;
    }
tr:nth-child(even).regTr
    {
    background: #EEE;

    }
tr:nth-child(odd).regTr
{
    background: #DDF;
}

.trBackground1
    {
    background: #EEE;

    }
.trBackground2
    {
    background: #DDF;
    }

.tdBackgroundYellow
{
    background: #FF0;
}
.tdBackgroundGreyMid
{
    background: #888;
}

/* FORM */

form
    {
        border-radius: 5px;
        background-color: #f2f2f2;
        padding: 20px;
    }
input[type=number], input[type=date], input[type=checkbox]
{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=text], select
    {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
input[type=submit]
    {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    }

input[type=submit]:hover
    {
    background-color: #45a049;
    }
