html, body {
    width: 100%;
    height: 100%;
}

.umlagern_grid {
    display: grid;
    grid-template-areas:
    "header"
    "searchbar"
    "content"
    "footer";
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100%;
    max-height: 100%;
}

.pageheader {
    text-align: center;
    color: white;
    background-color: #442682;
    display: flex;
}

#k_eingabe {
    padding: 50pt;
}

.myform {
    font-size: 20pt;
}

.loadingdiv {
    display: none;
    background: #000000BB;
    position: absolute;
    left: 0;
    top: 44pt;
    width: 100%;
    height: calc(100% - 44pt);
    z-index: 10000;
}

.wheretodiv {
    display: block;
    background: #FFFFFF;
    position: absolute;
    left: 0;
    top: 44pt;
    width: 100%;
    height: calc(100% - 44pt);
    z-index: 9000;
}

.loadingcircle {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.loader {
    width: 100%;
    animation: spin 700ms linear infinite;
}

.locationsline {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.inlineloadingspinner {
    border: 1em solid #95c11f;
    border-top: 1em solid #442682;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    aspect-ratio: 1/1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

input[type=text], input[type=search], input[type=password] {
    border-style: none;
    padding: 0.5em;
    background: #d3d3d3;
    border-radius: 10px;
    margin-top: 10pt;
    margin-bottom: 10pt;
}

input[type=text]:focus, input[type=search]:focus, input[type=password]:focus {
    outline: none;
    background-color: #00D9C6;
}

.storageplaceselector {
    background: #FFFFFF !important;
    border-style: solid !important;
    border-color: #d3d3d3;
    border-width: 2px;
    border-radius: 10px;
    color: #8b8b8b !important;
    padding: 0.5em;
    margin-left: 5pt;
    margin-right: 5pt;
}

.umlagern_button {
    margin-top: 5pt;
    margin-bottom: 5pt;
}

.mytablerow {
    border: 1px solid black;
}

.mytable {
    margin: 0.5em;
}

.notfoundbox {
    position: fixed;
    z-index: 100;
    top: 30%;
    left: 50%;
    min-width: 314px;
    margin-left: -157px;
    width: fit-content;
    height: fit-content;

    padding-left: 15pt;
    padding-right: 15pt;
    padding-top: 5pt;
    padding-bottom: 5pt;

    text-align: center;
    vertical-align: middle;

    border-style: solid;

    border-color: #000000;
    background: #868f99;

    font-size: 20pt;
    font-weight: bolder;
    color: #FFFFFF;
}

hr {
    margin: 5pt
}

.checkmark {
    color: #2bb99d;
    font-weight: bolder;
    font-size: 50pt;
    margin-top: -8pt;
    animation-duration: 0.5s;
    animation-name: animate-pop;
    animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
}

.weddingdiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20pt;
    margin: 10pt;
    border: #d3d3d3 solid;
    border-radius: 10px;
    padding: 10pt;
    z-index: 9000;
}

.wedding_error {
    color: #ea3838;
    font-weight: bolder;
    font-size: 50pt;
    margin-top: -8pt;
    animation-duration: 0.5s;
    animation-name: animate-pop;
    animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
}

.output_textarea {
    border-style: solid;
    padding-inline: 10pt;
    border-radius: 10px;
    margin: 10pt;
    text-align: center;
    /*field-sizing: content; nice, but does not work in older browsers*/
    font-size: inherit;
    resize: none;
}

.whereto_zero {
    color: white;
    background-color: #9d2f2f
}

@keyframes animate-pop {
    0% {
        opacity: 0;
        transform: scale(0.5, 0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

