﻿body {
    touch-action: pan-y double-tap-zoom pinch-zoom;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-weight: bold;
    background-color: black;
}

input[type="text"], input[type="number"] {
    font-size: 1.2em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    font-weight: bold;
    background-color: whitesmoke;
    width: 98%;
    border-width: 1px;
}
input[type="date"], input[type="datetime-local"] {
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
    font-weight: bold;
    background-color: whitesmoke;
    border-width: 1px;
}
input[type="submit"], input[type="button"], button {
    font-size: 1.2em;
    font-weight: bold;
}
.linkbutton {
    border: none;
    background: none;
    padding: 0;
    color: limegreen;
}
.linkbutton:hover, .linkbutton:active {
    color: blueviolet;
}
.fullsizetext {
    font-family: 'Lucida Console',monospace;
    width: 98%;
    height: 98%;
}
.horiz_touch_scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.max_height {
    width: 100%;
    height: 100%;
}
a:link, a:visited {
    text-decoration: none;
    color: limegreen;
}
a:active, a:hover {
    color: blueviolet;
}
h1 {
    visibility: inherit;
    font-weight: bold;
}
table {
    width: 100%;
    table-layout: fixed;
    border: 2px solid darkslategrey;
}
th {
    font-size: 1.3em;
    color: whitesmoke;
    background-color: darkgreen;
}
td.header_2 {
    color: whitesmoke;
    background-color: darkslategrey;
}
td {
    vertical-align: top;
}
.smallfont {
    font-size: 0.7em;
}
ul {
    font-size: 1.2em;
}
.emph {
    color: whitesmoke;
    background-color: darkslategrey;
}
.alt_tr {
    color: White;
    background-color: #333333;
}

#blazor-error-ui {
    background: darkred;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazored-typeahead__results {
    color: navy;
}

#cookieConsentdiv {
    display: block;
    z-index: 1;
    position: fixed;
    width: 400px;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px 20px 30px;
    font-family: 'Century Gothic', sans-serif;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 30px 30px 0 0;
}

#cookieConsentdiv button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background-color: green;
    padding: 10px 50px;
    margin-top: -5px;
    color: white;
    transition: all ease 0.5s;
}

#cookieConsentdiv button:hover {
    background-color: darkgreen;
}

#cookieConsentdiv h3 {
    font-size: 22px;
}

#cookieConsentdiv p {
    font-size: 15px;
}

#cookieConsentdiv a {
    color: darkgreen;
    text-decoration: underline;
}
