diff --git a/public/userarea/photos_popup.php b/public/userarea/photos_popup.php
index e5baeaa..ab2d7e7 100644
--- a/public/userarea/photos_popup.php
+++ b/public/userarea/photos_popup.php
@@ -105,7 +105,7 @@ $result->saveToFile($qrCodeFile);
-
![<?= htmlspecialchars($photo['file_name']) ?>](../photostrf/<?= htmlspecialchars($photo['file_path']) ?>)
+
[File non trovato]
@@ -122,6 +122,12 @@ $result->saveToFile($qrCodeFile);
+
+
+
+
×
+
![Immagine ingrandita]()
+
\ No newline at end of file
+
+ /* Stile per il modale dell'immagine ingrandita */
+ .image-modal {
+ display: none;
+ position: fixed;
+ z-index: 1001;
+ /* Sopra il popup principale */
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ overflow: auto;
+ background-color: rgba(0, 0, 0, 0.8);
+ }
+
+ .image-modal-content {
+ margin: auto;
+ display: block;
+ max-width: 90%;
+ max-height: 90vh;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ }
+
+ .image-modal-close {
+ position: absolute;
+ top: 15px;
+ right: 35px;
+ color: #fff;
+ font-size: 40px;
+ font-weight: bold;
+ cursor: pointer;
+ }
+
+ .image-modal-close:hover,
+ .image-modal-close:focus {
+ color: #bbb;
+ text-decoration: none;
+ }
+
+
+
\ No newline at end of file