
html {
    min-height: 100vh;
    background: #f0f0f0;
    /*background: repeating-linear-gradient(
    135deg,
    #bccad680 0px,
    #bccad680 50px,
    #66729280 50px,
    #66729280 60px,
    #f1e3dd80 60px,
    #f1e3dd80 70px
  );*/
}

body {
    background-color: #f0f0f0;
    color: white;
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.5;
}

main {
    background-color: white;
    color: black;
    min-height:100vh;
    font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
    border-radius: 2px;
    z-index: 1;
    font-size: 18px;
    margin-top: 25px;
    border-radius: 5px;
}

header {
    background-color: white;
    color: black;
    font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
    padding: 1em;
    border-radius: 2px;
}


nav {
  overflow: hidden;
  z-index: 2;
}

footer {
    background-color: black;
    color: white;
    font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
    font-size: 18px;
    max-width: 60vw;
    margin-top:0.5em;
    margin-bottom:0.5em;
    padding-top:0.5em;
    padding-bottom:0.5em;
    padding-left:4em;
    padding-right:4em;
    margin-left: 350px;
    z-index: 3;
}

footer a {
  color: white;
  /*text-decoration: none;*/
}


.content {
  background-color: white;
  max-width: 60vw;
  padding-top:4em;
  padding-bottom:2em;
  padding-left:4em;
  padding-right:4em;
  margin-left: 350px;
  z-index: 1;
  /*margin-top: -271px;*/
}


.title {
    font-size:40px;
    font-weight: bold;
    text-align: left;
    padding:0.0em;
    padding-right:0.2em;
    padding-left:1em;
    text-decoration: none; 
    color: black;
    font-family: 'LMRoman10', sans-serif; /*'Roboto', serif;*/
    display:inline;
    text-transform: uppercase;
    white-space: normal;
    display: inline-block;
    break-inside: auto;
}

.subtitle {
    font-size:20px;
    font-weight: bold;
    text-align: left;
    padding:0.2em;
    padding-left:2em;
    text-decoration: none; 
    color: grey;
    font-family: 'LMRoman10', sans-serif; /*'Roboto', serif;*/
    display:inline;
    white-space: normal;
    display: inline-block;
    /*-webkit-box-decoration-break: clone;
    box-decoration-break: clone;*/
    break-inside: auto;
}

.shadow {
    filter: drop-shadow(5px 5px 0.75rem #667292);;
}



table {
    border-collapse: collapse;
    width: 100%;
}

thead th {
  font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
  text-align: center;
  background-color: lightgrey;
  color: black;
}
tfoot th {
  font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
  text-align: center;
  background-color: lightgrey;
  color: black;
}
th {
  border: 1px solid black;
  padding-left: 3px;
  padding-right: 3px;
  font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
  text-align: center;
  background-color: grey;
  color: white;
}
tbody .header {
  border-top: 5px solid black;
}
tbody .leftcol {
  min-width: 1.5em;
  border-top: 5px solid black;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

tbody td {
  border: 1px solid black;
  padding-left: 3px;
  padding-right: 3px;
}
tfoot td {
  border: 1px solid black;
  padding-left: 3px;
  padding-right: 3px;
}
td {
    border: 1px solid black;
    padding-left: 3px;
    padding-right: 3px;
}


.rot_270 {
  /*overflow: visible;*/
  /*width: 1.2em;*/
  /* Rotate from top left corner (not default) */
  /*transform: rotate(270deg);*/
  /*-webkit-transform:  rotate(270deg);*/
  /*transform-origin: bottom right ;*/
  /*-webkit-transform-origin: bottom right ;*/
  writing-mode: vertical-lr;
  transform: scale(-1, -1);
  /*transform: rotate(-180deg);*/
}


.btn {
  background-color: grey;
  border: none;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: darkgrey;
}

.checked {
  /*color: orange;*/
  color: #adc4d6;
}


@media print {
    .pagebreak { page-break-before: always; } /* page-break-after works, as well */

    body {
        width: 100%;
        margin: 0!important;
        padding: 0!important;
    }
    main {
        min-width: 100vw;
        margin: 0!important;
    }
    .content {
      width: 100%;
      margin-left: 0px;
    }

    @page { size: A4 portrait; }

    #noPrintButton {
      display: none;
    }
    #dropdownmenu {
      display: none;
    }
    #navbar {
      display: none;
    }
    .content {
        margin-left: 0px;
    }

    header {
      display: none;
    }
    footer {
      display: none;
    }

    .rot_270 {
      writing-mode: horizontal-tb;
      transform: scale(1, 1);
    }

    table {
        border-collapse: collapse;
        width: 100vw;
    }
    th {
      border: 1px solid black;
      padding-left: 3px;
      padding-right: 3px;
      font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
      text-align: center;
      color: black;
    }
}


.langbtn {
}

.langbtn:hover {
    opacity: 0.7;
    cursor: pointer;
}


/*https://moderncss.dev/custom-select-styles-with-pure-css/*/
select {
  /* A reset of styles, including removing the default dropdown arrow*/
  appearance: none;
  background-color: transparent;
  border: solid #f0f0f0;
  padding: 0px 0px 0px 4px;
  margin-top: 3px;
  width: auto;
  font-family: 'LMRoman10';
  font-size: 20px;
  cursor: pointer;
  line-height: 1.3em;
}

select:hover {
    box-shadow: 0 0 10px 100px #f0f0f0 inset;
}

.button {
  background-color: grey;
  text-decoration: none;
  border: none;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 18px;
  font-family: 'LMRoman10', sans-serif; /*"Montserrat", serif;*/
}

/* Darker background on mouse-over */
.button:hover {
  background-color: darkgrey;
}