@charset "UTF-8";

/* Grundlegende Formate */
body {
    background-color: #888;
    margin: 2ex;
    font-family: Futura, Arial, sans-serif;
    font-size: 16px;
    color: #222;
}

/* Headings */
h1 {
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
    margin-top: 0ex;
    text-shadow: 0 -5px 5px rgba(0, 0, 0, 0.8);
}

h2 {
    font-weight: bold;
    font-size: 20px;
    color: #eeeeee;
    margin-top: 0;
    text-shadow: 0 -3px 3px rgba(0, 0, 0, 0.6);
}

h3 {
    font-weight: bold;
    font-size: 16px;
    color: #dddddd;
    margin-top: 0;
    text-shadow: 0px -2px 2px rgba(0, 0, 0, 0.5);
}

/* Formular-Elemente */
form {
    padding: 0;
    border: none;
}

/* Eingabefelder */
td, input, select, textarea {
    font-size: 16px;
    font-weight:  normal;
    color: #010101;
}

dl {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 25%;
    background-color: #cccccc;
    float:right;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.19) 0px -20px 20px, rgba(0, 0, 0, 0.23) 0px -6px 6px;
}

@media screen and (max-width: 767px) {
    dl {
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 6ex;
        background-color: #cccccc;
        float:right;
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.19) 0px -20px 20px, rgba(0, 0, 0, 0.23) 0px -6px 6px;
    }
}



/* meine Listentypen
 */
.myMenuRow {
    cursor: pointer;
    color: #666;
}
.myMenuRow:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}


.myDLmenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 35%;
    background-color: #cccccc;
    float:right;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.19) 0px -20px 20px, rgba(0, 0, 0, 0.23) 0px -6px 6px;
}

@media screen and (max-width: 600px) {
    .myDLmenu {
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 6ex;
        background-color: #cccccc;
        float:right;
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.19) 0px -20px 20px, rgba(0, 0, 0, 0.23) 0px -6px 6px;
    }
}

.myDDmenu {
    padding: 8px 0px 0px 0px;
    display: block;
}

.myDDmenu:after {
    clear: left;
    content: " ";
    display: block;
}

@media screen and (max-width: 600px) {
    .myDDmenu {
        display:none;
    }
}

dt a {
  display: block;
  float:left;
  margin-right: 0em;
  padding: 8px 0px 8px 16px;
  text-decoration: none;
  width: 30px;
      overflow: hidden;
      display: inline-block;
      white-space: nowrap;
}

.myAmenu {
    display: block;
    float:left;
    margin-right: 0em;
    padding: 8px 0px 8px 16px;
    text-decoration: none;
    color: #666;
    width: 30px;
        overflow: hidden;
        display: inline-block;
        white-space: nowrap;
  }

@media screen and (max-width: 600px) {
    .myAmenu {
        display: block;
        float:left;
        margin-right: 0em;
        padding: 8px 0px 8px 16px;
        text-decoration: none;
        width: 40px;
            overflow: hidden;
            display: inline-block;
            white-space: nowrap;
      }
    .myAmenu:hover {
        transform: scale(1.05);
        background-color: #f0f0f0;
        cursor: pointer;
        width: 40px;
    }
}
.myAmenu:hover {
    transform: scale(1.05);
    width: 40px;
}

.myDTmenu {
  display: block;
  float:left;
  margin-right: 1em;
  color: #66F;
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  width: 40px;
      overflow: hidden;
      display: inline-block;
      white-space: nowrap;
}

/* Change the link color on hover */
.myDTmenu:hover {
  transform: scale(1.0);
}

/* meine Listentypen
 */

.editList {
    margin-top: 1ex;
    background-color: #888;
    margin-bottom: 3ex;
    width: 62%;  /* Stellt sicher, dass der Button mindestens so breit ist wie das Eingabefeld */

}

.selectList {
    margin-top: 1ex;
    background-color: #888;
    margin-bottom: 3ex;
    border: 0;
    padding: 0px 0px 0px 0px;
    border-spacing: 0;
    cursor: default;
    width: 62%;  /* Stellt sicher, dass der Button mindestens so breit ist wie das Eingabefeld */

}

@media screen and (max-width: 600px) {
    .editList {
        width: 100%;
        max-width: 280px;
    }
    .selectList {
        width: 100%;
        max-width: 280px;
    }
}

.selectList th {
    border-bottom: 1px solid #666;
    border-radius: 0px;
    background-color: #888;
    padding: 0px 4px 0px 0px;
}

.selectList td {
    border-bottom: 1px solid #666;
    border-radius: 0px;
    padding: 0px 4px 0px 0px;
}

.selectList tr:nth-child(even) {
  background-color: #888;
}

.selectList tr:nth-child(odd) {
    background-color: #777;
  }

.selectList tr:hover {
    background-color: #D6D6D6;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 200px;
  background-color: #999;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -20px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #999 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 2s;
  animation: fadeIn 2s;
}

/*.popup .hide {*/
/*  visibility: hidden;*/
/*  -webkit-animation: fadeOut 5s;*/
/*  animation: fadeOut 5s;*/
/*}*/

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* Add animation (fade out the popup) */
/*@-webkit-keyframes fadeOut {*/
/*  from {opacity: 1;}*/
/*  to {opacity: 0;}*/
/*}*/
/**/
/*@keyframes fadeOut {*/
/*  from {opacity: 1;}*/
/*  to {opacity: 0;}*/
/*}*/


/* Bereiche */
.bereich, .feld {
    color: #010101;
    background-color: #ffe;
    border: 1px solid #ddd;
    box-shadow: rgba(0, 0, 0, 0.19) 0px -10px 20px, rgba(0, 0, 0, 0.23) 0px -6px 6px;
    border-radius: 2px;
}

.feld:disabled {
    color: #404040;
    background-color: #bba;
    border: 1px solid #ddd;
    box-shadow: rgba(0, 0, 0, 0.19) 0px -10px 20px, rgba(0, 0, 0, 0.23) 0px -6px 6px;
    border-radius: 2px;
}

.auswahl {
    background-color: #dff;
    width: 300px;
    border: 6px solid #ddd;
}

.qr-details {
    font-size: 16px;
    text-align: left;
    margin: 10px;
}

.qr-code {
    margin-top: 20px;
}

/* Checkboxen & Radio-Buttons */
.check, .radio {
    background-color: #909090; /* #ffffff */
    color: #010101;
    border: 1px solid #ddd;
}


/* Buttons */
.Button0 {
    background-color: #909090;
    color: #fff;
    width: 100%;  /* Stellt sicher, dass der Button mindestens so breit ist wie das Eingabefeld */
    max-width: 300px; /* Begrenzung, damit er nicht zu breit wird */
    border: 2px solid #ddd;
    display: block;
    margin: 10px 0;
    cursor: pointer;
    text-align: center;
    padding: 15px; /* Größere Höhe durch mehr Innenabstand */
    font-size: 18px; /* Etwas größere Schrift */
    font-weight: bold;
    border-radius: 4px; /* Weniger Abrundung für ein eckigeres Design */
    transition: background 0.3s;
}

.Button0:hover {
    background-color: #707070;
}

/* CSS */
.Button {
  background-color:  #929292;
  width: 100%;  /* Stellt sicher, dass der Button mindestens so breit ist wie das Eingabefeld */
  max-width: 250px; /* Begrenzung, damit er nicht zu breit wird */
  border: 0;
  border-radius: 56px;
  color: #dddddd;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  margin: 5px 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.Button:disabled {
  background-color:  #888888;
  width: 100%;  /* Stellt sicher, dass der Button mindestens so breit ist wie das Eingabefeld */
  max-width: 250px; /* Begrenzung, damit er nicht zu breit wird */
  border: 0;
  border-radius: 56px;
  color:  #777777;
  cursor: not-allowed;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  margin: 5px 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 0.2px lightgrey;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}


.Button:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.Button:hover:enabled {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

.ButtonSmall {
    background-color:  #929292;
    width: 100%;
    max-width: 250px; /* Begrenzung, damit er nicht zu breit wird */
    border: 0;
    border-radius: 14px;
    color: #dddddd;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
    font-size: 11px;
    font-weight: 600;
    outline: 0;
    margin: 1px 0;
    padding: 5px 6px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.ButtonSmall:disabled {
    background-color:  #888888;
    width: 100%;
    max-width: 250px; /* Begrenzung, damit er nicht zu breit wird */
    border: 0;
    border-radius: 14px;
    color: #777777;
    cursor: not-allowed;
    display: inline-block;
    font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
    font-size: 11px;
    font-weight: 600;
    outline: 0;
    margin: 1px 0;
    padding: 5px 6px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 0.2px lightgrey;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.ButtonSmall:before {
    background-color: initial;
    background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 31px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: .5;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 92%;
}

.ButtonSmall:hover:enabled {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}


@media (min-width: 768px) {
  .Button {
    padding: 16px 48px;
  }
  .ButtonSmall {
      padding: 5px 15px;
  }
}


/* Struktur für die Tage */
.day {
    margin-bottom: 20px;
}

/* Klappbare Bereiche */
.toggle {
    cursor: pointer;
    font-weight: bold;
}

.content {
    display: none;
    margin-left: 20px;
}
