
/*********************************************************************/
/*********   Schön, dass du Zackys Corecodes durchforstest!  *********/
/*********************************************************************/
/**       Wenn du CSS genauso liebst wie Zacky und noch dazu        **/
/**  programmieren kannst, freut er sich sehr, wenn du ihn direkt   **/
/**              unter zacky@bb-reihe.at kontaktierst!              **/
/*********************************************************************/
/*********    Wir freuen uns auf dich und dein Feedback!     *********/
/********* (c) 2026 Zackys-Woerteruniversum.at | BB-Reihe.at *********/
/*********************************************************************/


.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 5vh 5vw;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal:not(.hidden) {
  display: flex;
}

/* Inhalt der Modals */
.modal-content {
  background: #fff8f8;
  border-radius: 8px;
  padding: 1.5em;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  position: relative;
}

/* X-Schließen-Button */
.modal-content .close {
  position: absolute; 
  top: 10px;
  right: 14px;
  font-size: 1.6em;
  font-weight: bold;
  color: white; 
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #e51d42; 
  border-radius: 50%; 
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
  user-select: none;
}

/* Hover-Effekt */
.modal-content .close:hover {
  background-color: #c0392b; 
}

#quickModal {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px); 
}
