
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-content {
  background: white;
  max-width: 500px;
  margin: 100px auto;
  padding: 20px;
  position: relative;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Zatvárací krížik */
.popup-close {
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
  font-size: 30px;
}

.popup-content {
   background: white;
   display: inline-block; /* umožní zmenšiť šírku podľa obsahu */
   max-width: 90%;
   padding: 30px;
   position: relative;
   border-radius: 8px;
   box-sizing: border-box;
   margin: 100px auto;
 }

.popup-overlay {
  text-align: center;
}

.popup-overlay::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.popup-content {
  vertical-align: middle;
}




@media (max-width: 768px) {
  .popup-content {
    width: 100%;
    max-width: 100%;
    height: 75vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 12px 12px 0 0;
    padding: 16px;
    overflow-y: auto;
  }
}

.popup-text {
  text-align: left;
}