/* ========== Basis-Layout ========== */
html, body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100%;
  overflow: hidden;
  background-color: #303030;
}

/* ========== Header ========== */
.header {
  background-color: #800000;
  width: 100%;
  border-bottom: 3px solid #5e0000;
  position: relative;
}
.titel {
  color: white;
  margin: 1vh;
  text-align: center;
  font-size: 6vh;
}
.groupalarm {
  position: absolute;
  top: 1vh;
  left: 3vw;
  height: 6vh;
}

/* ========== Footer ========== */
.footer {
  background-color: #1d1d1d;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5vh;
  width: 100%;
}
.footer_text {
  color: aliceblue;
  margin-top: 1.5vh;
  font-size: 2vh;
}
#seite {
  float: left;
  margin-left: 10vh;
}
#name {
  float: right;
  margin-right: 10vh;
}

/* ========== Container ========== */
.container {
  position: absolute;
  border-radius: 20px;
  border: 1px solid #1d1d1d;
  box-shadow: 5px 5px 5px rgb(26, 26, 26);
  overflow: auto;
  max-height: 80vh;
  width: 98vw;
  top: 12vh;
  left: 1vw;
  background-color: #1d1d1d;
}
.container_header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #800000;
  height: 4vh;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  text-align: center;
}
.container_header a {
  color: white;
  font-size: 3vh;
}

/* ========== Buttons & Grid ========== */
.auswahlButton {
  border-radius: 0.5vw;
  border: 5px solid #000;
  background-color: #800000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 3vh;
  color: white;
  width: 22vh;
  height: 22vh;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
               -1px 1px 0 #000, 1px 1px 0 #000;
}
.auswahlButton:disabled {
  opacity: 0.4;
  filter: grayscale(100%);
  cursor: not-allowed;
}
.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 2vh 2vw;
  justify-content: center;
  align-items: center;
  margin: 2vh auto;
  width: fit-content;
}


#reactionFull{
 height:70vh;
 color: white;
 padding-top: 3vh;

}

#reactionStatus, #reactionStartBtn{
 color: white;
 margin-bottom: 3vh;
 font-size: large;
}

#reactionStartBtn{
  padding:50px; 
  border-radius: 40%;
  border-color: white;
  background-color: #800000;
}


#slot0 { background-image: url('/res/Wasser.png'); }
#slot1 { background-image: url('/res/Sternquell.png'); }
#slot2 { background-image: url('/res/Urkrostizer.png'); }
#slot3 { background-image: url('/res/Kooks.png'); }
#slot4 { background-image: url('/res/Spezi.png'); }
#slot5 { background-image: url('/res/Limo.png'); }

/* ========== Navigation / Menü ========== */
.hamburger {
  display: block;
  font-size: 4vh;
  position: absolute;
  right: 2vw;
  top: 2vh;
  color: white;
  cursor: pointer;
  z-index: 1000;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 8vh;
  right: 0;
  background-color: #1d1d1d;
  width: 60vw;
  border-left: 2px solid #5e0000;
  padding: 2vh;
  box-shadow: -3px 3px 10px rgba(0,0,0,0.5);
  z-index: 999;
}
.mobile-menu a {
  display: block;
  color: white;
  padding: 1vh 0;
  text-decoration: none;
  font-size: 2.5vh;
  border-bottom: 1px solid #5e0000;
}

/* ========== Druckbereich ========== */
#print-container {
  text-align: center;
  margin-top: 2vh;
}
#print-button,
#reset-button {
  background-color: #800000;
  color: white;
  border: none;
  padding: 1vh 3vh;
  font-size: 2vh;
  border-radius: 8px;
  cursor: pointer;
  margin: 1vh;
}
#print-button:hover,
#reset-button:hover {
  background-color: #a00000;
}
/* Schrift in der Tabelle beim Drucken schwarz erzwingen */

@media print {
  #dsl-daten,
  #dsl-daten * {
    color: #000 !important;
    font-size: 24pt;
  }
}


/* ========== Modal ========== */
#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
#modalBox {
  background: #1d1d1d;
  padding: 2vh;
  border-radius: 10px;
  text-align: center;
  color: white;
  width: 80vw;
  max-width: 400px;
  box-shadow: 0 0 20px black;
}
#modalBox button {
  margin: 1vh;
  padding: 1vh 2vh;
  font-size: 2vh;
  background-color: #800000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
#modalBox button:hover {
  background-color: #a00000;
}

/* ========== Media Queries ========== */
@media screen and (max-width: 920px) {
  .groupalarm {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .titel {
    font-size: 10vw;
  }
  .footer #seite {
    display: none;
  }
}

/*================ Einstz.html =========================*/


