
        /* Stiluri CSS pentru pop-up */
        #consent-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            z-index: 1000;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        #consent-popup h2 {
            margin-top: 0;
        }
        #consent-popup button {
            margin: 5px;
            padding: 10px 20px;
        }
        @media screen and (max-width: 600px) {
            #consent-popup {
                padding: 15px;
            }
            #consent-popup h2 {
                font-size: 18px;
            }
            #consent-popup button {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        /* Stiluri pentru modalul de personalizare */
        #consent-customize {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1001;
            display: none;
            justify-content: center;
            align-items: center;
        }
        #consent-customize .modal-content {
            background-color: #fff;
            padding: 20px;
            width: 90%;
            max-width: 500px;
            border-radius: 5px;
        }
        #consent-customize label {
            display: block;
            margin: 10px 0;
        }
        #consent-customize button {
            margin-top: 15px;
        }
        /* Stiluri pentru butonul de setări cookie */
        #cookie-settings-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #f1f1f1;
            border: none;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 1002;
			width: 55px;
        }
        #cookie-settings-button img {
            width: 24px;
            height: 24px;
        }
        @media screen and (max-width: 600px) {
            #cookie-settings-button {
                bottom: 15px;
                left: 15px;
                padding: 8px;
            }
            #cookie-settings-button img {
                width: 20px;
                height: 20px;
            }
        }
