
        /* Basic styles for the popup */
        #cookie-policy-popup {
            display: none; /* Hidden by default */
            position: fixed;
            top: 10%;
            left: 50%;
            transform: translate(-50%, 0);
            width: 80%;
            max-width: 600px;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            padding: 20px;
        }
        #cookie-policy-popup h1 {
            font-size: 18px;
            margin: 0 0 10px;
        }
        #cookie-policy-popup p {
            font-size: 14px;
            margin: 0 0 10px;
        }
        #cookie-policy-popup button {
            padding: 8px 12px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-right: 10px;
        }
        #cookie-policy-popup button:hover {
            background-color: #45a049;
        }
        #cookie-policy-overlay {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 999;
        }
