        .aimodal {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 1.0); /* Black with opacity */
            justify-content: center;
            align-items: center;
            z-index: 300000;
            flex-direction: column; 
        }
        .aimodal img {
            max-width: 90%;
            max-height: 90%;
            border: 2px solid white;
            border-radius: 5px;
        }
        .aimodal .close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 50px;
            color: white;
            cursor: pointer;
            
        }
 
        .aimodal .label {
             color: white;
             margin-bottom: 10px;
             font-size: 20px;
             padding: 10px 20px;
        }
