 /* Popup štýly */
        #popup {
            position: fixed;
            width: auto;
            max-height: 80%;
            background-color: white;
            border: 2px solid black;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none; /* Skryté, kým ho nezobrazíme */
            z-index: 1000;
        }
        
        @media only screen and (max-width: 520px){
        	#popup {
	        	width: 90%;
	          height: auto;
        	}	
        }

        /* Tlačidlo na zatvorenie */
        #closePopup {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 16px;
            background-color: #f44336;
            color: white;
            border: none;
            padding: 5px 12px;
            border-radius: 3px;
        }