        /* Styl dla nakładki */
        #surveyOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Przyciemnione tło */
            display: none; /* Domyślnie ukryte */
            justify-content: center;
            align-items: center;
            z-index: 9999; /* Upewnij się, że jest na wierzchu */
            font-family: Arial, sans-serif;
        }

        /* Styl dla okna pop-up */
        #surveyPopup {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
            max-width: 400px;
            width: 90%;
            position: relative;
            transform: translateY(-20px); /* Początkowe delikatne przesunięcie */
            transition: transform 0.3s ease-out;
        }

        /* Styl dla przycisku zamykającego */
        #closePopup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #aaa;
            border: none;
            background: none;
            padding: 0;
            line-height: 1;
        }

        #closePopup:hover {
            color: #333;
        }

        h2 {
            color: #333;
            margin-bottom: 25px;
        }

        p {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        #surveyButton {
            background-color: #007bff; /* Kolor przycisku */
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            text-decoration: none; /* Usuń podkreślenie z linku */
            display: inline-block; /* Pozwól na stylizację jako blok */
            transition: background-color 0.3s ease;
        }

        #surveyButton:hover {
            background-color: #0056b3; /* Ciemniejszy kolor przy najechaniu */
        }	