/* Style du fond de la Lightbox */
        #lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s ease;
        }

        /* Style du contenu de la Lightbox */
        .lightbox-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Texte dans la lightbox */
        .lightbox-content h2 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .lightbox-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        /* Bouton de fermeture */
        #closeBtn {
            background-color: #ff4d4d;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        #closeBtn:hover {
            background-color: #e63946;
        }