:root {
    --main-bg: #f0f2f5;
    --main-fontcolor: #39393f;
    --side-bg: #243241;
    --side-fontcolor: #f0f2f5;
    --side-bg-hover: #353535;
    --not-quite-black: #23272a;
    --navi-content-height: 90vh;
    --navi-width: 12vw;
    --top-height: 5vh;
    --top-fontcolor: #f0f2f5;
    --footer-height: 3vh;
    --light-green: #1fde2c;
    --green: #2e7d32;
    --blue: #7fc3ff;
    --light-blue: #c9e6ff;
    --nearly-white: #fbfbfb;
    --light-gray: #e6e6e6;
    --gray: #bcbcbc;
    --navi-button-height: 6vh;
    --electric-blue: #02eaff;
    --berkeley-blue: #12355b;
    --african-violet: #b876bc;
    --crimson: #d72638;
    --crimson-light: #eb3c4e;
    --light-red: #ffd8d8;
    --pumpkin: #FF740A;
    --grey-tone: #394654;
    --download-tag: #aad6ff;
    --content-padding: 1vh;
    --content-width: calc(100vw - var(--navi-width) - 2vh);
}
* {
    -webkit-tap-highlight-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
@font-face {
    font-family: 'RobotoFlex';
    src: url('fonts/RobotoFlex.woff'); 
}
html, body { 
    width: 100vw; 
    height: 100vh;
    padding: 0px; 
    margin: 0px; 
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    background-color: var(--main-bg);
    overflow: hidden;
    font-size: 0.7vw;
    font-weight: 400;
}
h1, h2, h3, h4 {
    margin: 1vh 0vh;
    padding: 0px;
}
.grid2 {
    display: grid; 
    grid-template-columns: auto auto; 
    column-gap: 1vh;
    row-gap: 1vh;
    margin: 0px auto;
    text-align: center;
}
.grid3 {
    display: grid; 
    grid-template-columns: auto auto auto; 
    column-gap: 4vh;
    margin: 0px auto;
    text-align: center;
}
.grid4 {
    display: grid; 
    grid-template-columns: auto auto auto auto;
    column-gap: 2vh;
    margin: 0px auto;
    text-align: center;
}
/* .grid4 > div {
    padding: 2vh 1vh;
    margin: 1vh;
    background-color: var(--light-blue);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5vh;
    cursor: pointer;
    border: 1px solid #ccc;
} */
.grid5 {
    display: grid; 
    grid-template-columns: auto auto auto auto auto; 
    column-gap: 1vh;
    text-align: center;
    margin: 0px auto;
}
.grid5-2 {
    display: grid; 
    grid-template-columns: auto auto auto auto auto; 
    column-gap: 1vh;
    row-gap: 1vh;
    text-align: center;
    justify-content: start;
}
.grid10-2 {
    display: grid; 
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto; 
    column-gap: 1vh;
    row-gap: 1vh;
    text-align: center;
    justify-content: start;
}
.grid12 {
    display: grid; 
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
    column-gap: 1vh;
    row-gap: 1vh;
}
#main { display: block; width: 100vw; height: 100vh; overflow: hidden}
nav {
    background-color: var(--side-bg); 
    position: absolute; 
    top: 0vh;
    left: 0vh; 
    bottom: 0vh; 
    width: var(--navi-width); 
    outline: none;
    padding: 0vw;
    padding-bottom: 2vh; 
    color: var(--nearly-white);
    font-weight: 400;
    letter-spacing: 0.15vh;
    font-size: 0.7vw; 
    overflow: hidden;
    padding-top: 2vh;
    display: block;
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#naviButton {
    display: none;
    position: relative;
    outline: none;
    cursor: pointer;
    z-index: 99;
    color: var(--not-quite-black);
    font-size: 2.5vh;
    height: var(--navi-button-height);
    line-height: var(--navi-button-height);
}
#quickSettings {
    width: 100%;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 1vh;
}
nav ul {
    display: block;
    list-style-type: none;
    padding: 0px;
    margin: 0px auto;
    text-align: center;
}
nav ul li {
    width: 80%;
    margin: 0px auto;
    text-align: left;
    padding-left: 1vw;
    border-radius: 0.25vw;
    display: block;
    cursor: pointer;
    color: var(--nearly-white);
}
nav ul li a i {
    margin-right: 0.25vw;
    width: 1vw;
    text-align: center;
}
nav ul li a {
    line-height: 4vh;
    display: block;
    font-weight: 400;
}
nav ul li:hover {
    background-color: var(--not-quite-black);
}
nav ul li:hover > a {
    color: var(--nearly-white);
}
nav ul li ul {
    display: none;
    padding: 0px;
    margin: 0px;
}
nav ul li ul li {
    padding: 0vw 1vw;
    margin: 0px;
}
li.submenu:hover{
    background-color: transparent;
    color: var(--nearly-white);
}
li.sub {
    font-weight: normal;
}
.sub { display: none; padding-left: 0.5vw;}
.submenu > a:first-child:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #565d65;
    content: " \f0d7";
}
#content {
    position: absolute;
    top: 0vh;
    left: var(--navi-width);
    bottom: var(--footer-height);
    right: 0vw; 
    padding: 1vh;
    overflow-y: scroll; 
    overflow-x: hidden; 
    color: var(--main-fontcolor);
    width: var(--content-width);
}
#footer {
    position: absolute;
    background-color: var(--main-bg);
    z-index: 98;
    height: var(--footer-height);
    line-height: var(--footer-height);
    bottom: 0px;
    left: var(--navi-width);
    right: 0px;
    font-size: 1vh;
    text-align: center;
}
a, a:link, a:visited, a:active { text-decoration: none; color: var(--not-quite-black);}
nav a, nav a:link, nav a:visited, nav a:active { text-decoration: none; color: var(--nearly-white);}
.noselect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #c3c3c3; }
::-webkit-scrollbar-thumb { background: #0088ff; min-height: 10vh; }
::-webkit-scrollbar-thumb:hover { background: #0088ff; }
nav::-webkit-scrollbar { width: 0px;}
#naviLogo {
    width: 4vw;
    margin: 0px auto;
    margin-bottom: 2vh;    
}
#loginform {
    height: 30vh;
    width: 16vw;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 40%;
    left: 50%;
    border-radius: 0.5vw;
    backdrop-filter: blur(10px);
    padding: 1vh 2vh;
    text-align: center;
    margin: 0px auto;
}
#loginform > a {
    color: #000;
    font-size: 0.6vw;
}
#loginform > img {
    width: 6vw;
    margin-bottom: 2vh;
}
#loginhint {
    display: block;
    color: red;
    font-size: 1vh;
    margin-bottom: 2vh;
}
.logininput {
    display: block;
    width: 100%;
    font-size: 1.5vh;
    padding: 1vh;
    margin: 0px auto;
    margin-bottom: 1vh;
}
::placeholder{
    color: #666;
}
input, select, radio {
    border: 0;
    outline: 0;
    color: rgb(60, 66, 87);
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px;
    border-radius: 4px;
    line-height: 20px;
    font-weight: 400;
    padding: 0.25vh 0.5vh;
    min-height: 3vh;
    vertical-align: middle;
    transition: background-color .24s,box-shadow .24s;
    transition-property: background-color, box-shadow;
    transition-duration: 0.24s, 0.24s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
    box-sizing: border-box;
}
input:focus{
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(58 151 212 / 36%) 0px 0px 0px 4px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px;
}
input[type=radio], input[type=file], input[type=checkbox] {
    border: 0px;
    outline: 0px;
    box-shadow: none;
}
input[type="radio"] {
    margin-top: -1px;
    vertical-align: middle;
}
.linedTable {
    width: 100%;
}
.scorcardItem {
    font-size: 1.4vw;
    text-align: center;
    line-height: 3vw;
    width: 3vw;
    height: 3vw;
    border: 1px solid #c0c0c0;
    display: inline-block;
    scroll-margin: 10vh;
}
.desc {
    font-size: 0.7vw; 
    padding: 1vh 0vh;
}
.bold {
    font-weight: bold;
}
select {
    padding: 0.5vh 1vh;
}
option {
    padding: 1vh;
}
.supervisionPageHeader {
    background-color: var(--main-fontcolor);
    color: var(--main-bg);
    padding: 1vh;
    font-weight: bold;
    text-transform: uppercase;
    justify-content: space-between;
    display: grid;
    align-items: center;
}
.supervisionPageHeader a {
    color: #fff;
}
.supervisionPageCell {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    text-align: left;
    padding: 0.5vh 0vh;
}
.supervisonPageCellToday {
    background-color: var(--light-blue);
}
.supervisionPageDate {
    margin-left: 1vh;
    text-align: center;
    font-weight: bold;
    font-size: 1.8vh;
    padding: 0.5vh;
}
.supervisionsPageTag {
    background-color: var(--grey-tone);
    border-radius: 0.25vh;
    color: #fff;
    padding: 1vh;
    font-weight: bold;
    font-size: 1.5vh;
    vertical-align: middle;
    margin: 0.5vh;
    min-width: 60vh;
    text-align: center;
}
.supervisionsPageTag a {
    color: var(--nearly-white);
    cursor: pointer;
}
.greyout a {
    color: var(--side-bg-hover);
    cursor: pointer;
}
.supervisionPageTags {
    grid-template-columns: 10vh auto auto;
    column-gap: 0.5vh;
    row-gap: 0.5vh;
    justify-content: start;
    justify-items: center;
    align-items: center;
}
.supervisionWeDayTag {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2.5vh;
    margin: 0px;
    padding: 0px;
}
.supervisionDateTag {
    display: block;
    font-size: 1.5vh;
    margin: 0px;
    padding: 0px;
}
#toTopButton {
    display: none;
    position: fixed;
    bottom: 1vh;
    right: 1vw;
    z-index: 99;
    font-size: 2vh;
    outline: none;
    cursor: pointer;
    border-radius: 0.25vh;
}
#toTopButton i {
    border: 1px solid var(--side-fontcolor);
    color: var(--side-fontcolor);
    padding: 0.5vw 1vw;
    border-radius: 0.5vw;
    display: block;
    background-color: var(--side-bg);
}
#addMember {
    position: absolute;
    top: 1vh;
    right: 1vw;
    color: var(--light-green);
    font-size: 2vw;
}
#hoManualBooking {
    margin: 2vh 0vh;
    font-size: 2vh;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    background-color: var(--electric-blue);
}
#hoManualBooking > a {
    padding: 2vh;
    display: block;
}
.dashboarditem {
    text-align: center;
    background-color: var(--grey-tone);
    color: var(--nearly-white);
    padding: 1vh 0vh;
    height: 11vh;
    font-size: 1.5vh;
    display: block;
    align-content:space-between;
    margin: 0px auto;
    border: 1px solid #ccc;
    border-radius: 0.5vh;
    width: 100%;
}
.dashboarditemnumber {
    font-weight: bold;
    font-size: 5vh;
}
.dashboardMonth {
    font-size: 1.8vh; 
    text-align: center; 
    background-color: var(--light-green); 
    padding: 1vh;
    border-radius: 0.5vh;
}
.dashboardMonthValue {
    font-size: 4vh;
    font-weight: bold;
}
.block100 {
    display: block;
    width: 100%;
}
.apoint {
    font-weight: bold; 
    padding-bottom: 1vh;
}
.h10vh {
    height: 10vh;
}
#customKeyBoard {
    display: none;
}
.tableaction {
    font-size: 1.5vh;
}
.tableaction i {
    margin: 0vw 0.5vw;
}
.greyout {
    background-color: var(--light-gray);
    color: var(--gray);
    text-align: center;
    font-weight: bold;
}
/* Table */
.sl-table {
    table-layout: auto;
    border-collapse: collapse;
    margin: 2vh 0;
    font-size: 1.3vh;
    font-family: sans-serif;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border: 1px solid #f2f7fb;
    word-wrap: break-word;       /* Alte Syntax für Umbruch */
    overflow-wrap: break-word;   /* Moderne Syntax für Umbruch */
    white-space: normal;          /* Zeilenumbruch erlauben */
}
.fixedTable {
    table-layout: fixed;
}
.sl-table thead tr {
    background-color: var(--grey-tone);
    color: #ffffff;
    text-align: left;
}
.sl-table th,
.sl-table td {
    padding: 1vh 3vh 1vh 1vh;
    overflow-wrap: break-word;
}
.sl-table th {
    -webkit-user-select: none; -ms-user-select: none; user-select: none;
}
.sl-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.sl-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
    color: var(--not-quite-black);
}
/* .sl-table tbody tr:nth-of-type(odd) a {
    color: var(--not-quite-black);
}
.sl-table tbody tr:nth-of-type(even) a {
    color: var(--not-quite-black);
} */
.sl-table tbody tr:last-of-type {
    border-bottom: 2px solid #dddddd;
}
.sl-table tbody tr.active-row {
    color: var(--not-quite-black);
}
.sl-table td > input[type=text], .sl-table td > input[type=email] {
    width: 100%;
}
.sl-table textarea {
    width: 100%;
    min-height: 8vh;
}
.sl-table th:first-child, .sl-table td:first-child {
  width: auto;
  white-space: nowrap;
}
.leftcol th:first-child, .leftcol td:first-child {
  width: auto;
  white-space: nowrap;
  width: 1px;
}
.firstcolbold th:first-child, .firstcolbold td:first-child {
    font-weight: bold;
}
.talignright {
    text-align: right;
}

.thover tbody tr:hover {
    background-color: var(--light-blue);
    transition: background-color 0.5s ease;
}
#loading {
    background-color: rgba(255,255,255,0.8);
    color: #000;
    padding-top: 40vh;
    position: absolute;
    z-index: 99;
    top: 0px;
    left: var(--navi-width);
    bottom: 0px;
    right: 0px;
    text-align: center;
    font-size: 3vw;
    backdrop-filter: blur(3px);
}
#sci-points {
    font-size: 3vh;
    width: 5vw;
    font-weight: bold;
    padding: 0.5vh 1vh;
    border-radius: 0.5vw;
    text-align: center;
    background-color: var(--blue);
}
.pagination, a.pagination {
    color: #000;
    width: 2vw; 
    height: 2vw; 
    line-height: 2vw; 
    margin-right: 0.4vw; 
    background-color: #fff; 
    display: inline-block; 
    border: 1px solid #000; 
    text-align: center;
}
.sl-calendar {
    display: grid; 
    grid-template-columns: auto auto auto auto auto auto auto;
    column-gap: 0vh;
}
.tag {
    background-color: var(--not-quite-black);
    border-radius: 0.5vh;
    color: var(--nearly-white);
    padding: 0.25vh 1vh;
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    font-style: normal;
}
.tagdownload {
    background-color: var(--download-tag);
    color: var(--not-quite-black);
    margin-bottom: 0.5vh;
}
.tagWeaponCat-0 {
    background-color: var(--grey-tone);
}
.tagWeaponCat-1 {
    background-color: var(--green);
}
.tagSubscriber {
    margin: 0.2vh;
}
.cal_head {
    height: 2vh;
    background-color: var(--not-quite-black);
    color: #fff;
    padding: 1vh;
    border: 1px solid #ccc;
}
.cal_day {
    border:1px solid #ccc;
    padding: 1vh;
    height: 10vh;
}
.cal_last_month {
    color: #ccc;
}
.cal_current_day {
    font-weight: bold;
    background-color: var(--light-blue);
}
.notification, #notification {
    display: block;
    background-color: var(--light-blue);
    padding: 1vh 1vh;
    margin: 2vh 0vh;
    text-align: center;
    font-size: 1.3vh;
}
.superVisAdminItem {
    text-align: center;
    display: block;
    background-color: var(--light-gray);
    padding: 1vh;
    margin-bottom: 2vh;
    border-radius: 0.5vh;
    background-color: #fff;
}
.superVisAdminItem img {
    margin: 1vh;
}
.addEntryOption {
    display: inline-block;
    min-width: 10vw;
    text-align: center;
    background-color: var(--grey-tone);
    padding: 1vh;
    color: #fff;
    cursor: pointer;
}
a.button, .button {
    display: inline-block;
    outline: 0;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 0.25vh 1vh;
    line-height:2.5vh;
    background-color: var(--grey-tone);
    color: var(--nearly-white);
    page-break-inside: avoid;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noabutton {
    display: inline-block;
    outline: 0;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 0.25vh 1vh;
    line-height:2.5vh;
    background-color: var(--grey-tone);
    color: var(--nearly-white);
    page-break-inside: avoid;
    font-weight: 400;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 1vh 2vh;
}
.button {
    margin-right: 0.25vw;
    box-sizing: content-box;
}
.button2 {
    display: inline-block;
    outline: 0;
    text-align: center;
    cursor: pointer;
    min-width: 2vw;
    padding: 0vh 4vh;
    line-height: 3vh;
    background-color: var(--blue);
}
.button > a {
    display: block;
    color: var(--nearly-white);
    letter-spacing: 0.1vh;
    font-weight: 700;
}
.buttonSmall {
    padding: 0vh;
    line-height: 2vh;
    text-align: center;
    font-size: 1vh;
    color: var(--nearly-white);
}
.buttonSmall a > i {
    padding: 0px;
    margin: 0px;
}
.searchfield {
    box-sizing: border-box;
    width: 100%;
    display: block;
    padding: 0.5vh;
    font-size: 1.6vh;
}
.loginbutton {
    display: block;
    width: 15vw;
    font-weight: bold;
    font-size: 1.5vh;
    margin: 0px auto;
    margin-bottom: 1vh;
    color: #fff;
    padding: 1vh 1vh;
    box-sizing: content-box;
}
a.buttonSmall, .buttonSmall > a {
    display: block;
    color: var(--nearly-white);
    padding: 0.1vh 1vw;
    margin: 0px auto;
    letter-spacing: 0.1vh;
    font-weight: 700;
}
a.colorred, .colorred {
    color: var(--crimson-light);
}
a.colorgreen, .colorgreen {
    color: var(--light-green);
}
.blink {
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {  
    50% { opacity: 0; }
}

#trainingExport {
    width: 100%;
    border-collapse: collapse;
}
#trainingExport tr td {
    padding: 1vh 5vh;
}
#trainingExport tr:nth-child(even) {
    background-color: #bad3ff;
}
.hint {
    padding: 1vh;
    border: 1px solid #2e2e2e;
}
.phint {
    margin-top: 2vh;
    margin-bottom: 2vh;
    font-size: 1.4vh;
    border: 1px solid #ccc;
    padding: 1vh;
}
.bggreen {
    background-color: rgb(101, 175, 101);
}

.sl-grid-2 {
display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  gap: 1rem;
  align-items: start; /* Vertikal oben ausrichten */
}

.sl-grid-2 .sl-grid-2-title{
  grid-column: span 2;
  font-weight: bold;
  margin-bottom: 0.5em;
  align-items: start; /* Vertikal oben ausrichten */
}

.sl-grid-2 .sl-grid-2-label {
  font-weight: bold;
  color: #333;
  align-items: start; /* Vertikal oben ausrichten */
}

.sl-grid-2 .sl-grid-2-value {
    font-weight: normal;
}
.bggreen {
    background-color: var(--green);
}
.bgred {
    background-color: var(--crimson-light);
}
.bgtransparent {
    background-color: transparent;
}