
        /* Stiluri CSS pentru pop-up */
        #consent-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            z-index: 4000;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            text-align: center;
			    border-top: 4px solid #E9773E;
        }
        #consent-popup h2 {
            margin-top: 0;
        }
        #consent-popup button {
            margin: 5px;
   
        }
        @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;
			
			
			position: fixed;         /* se poziționează relativ la fereastra vizibilă */
  top: 50%;                /* 50% de sus */
  left: 50%;               /* 50% de la stânga */
  transform: translate(-50%, -50%);  /* mută înapoi cu 50% din dimensiunile divului */
  z-index: 9999;           /* asigură-te că e deasupra altor elemente */
  background: white;


  box-shadow: 0 0 10px rgba(0,0,0,0.2);
        }
        #consent-customize label {
            display: block;
            margin: 5px 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: 50px;
        }
       
        @media screen and (max-width: 600px) {
            #cookie-settings-button {
                bottom: 15px;
                left: 15px;
                padding: 8px;
            }
         
        }
