/* Štýly pre pop-up kontajner */
.wpppd-modal {
    display: none; /* Skryté štandardne */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Polopriehľadné pozadie */
    padding-top: 100px;
}

/* Štýly pre obsah pop-up okna */
.wpppd-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 3px solid #888;
    width: 60%;
    position: relative;
}

/* Tlačidlo zatvorenia */
.wpppd-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.wpppd-close:hover,
.wpppd-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
