#cookie-consent-popup {
            position: fixed;
            bottom: 20px; /* Adjust distance from the bottom */
            left: 20px; /* Adjust distance from the left */
            right: 20px; /* Adjust distance from the right */
            background-color: #f8f8f8; /* Light background */
            color: #333; /* Dark text for readability */
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: none; /* Hidden by default, shown by JS */
            z-index: 1000; /* Ensure it's on top of other content */
            font-family: 'Inter', sans-serif; /* Recommended font */
            font-size: 14px;
            line-height: 1.6;
            max-width: 900px; /* Max width for larger screens */
            margin: 0 auto; /* Center on larger screens */
            text-align: center; /* Center content within the box */
            box-sizing: border-box; /* Include padding in width/height */
        }

        #cookie-consent-popup p {
            margin-bottom: 15px;
            font-weight: 500;
        }

        #cookie-consent-popup .button-container {
            display: flex;
            justify-content: center;
            gap: 15px; /* Space between buttons */
            flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
        }

        #cookie-consent-popup button {
            background-color: #007bff; /* Primary blue for accept */
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        #cookie-consent-popup button:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }

        #cookie-consent-popup button.reject-button {
            background-color: #dc3545; /* Red for reject */
        }

        #cookie-consent-popup button.reject-button:hover {
            background-color: #c82333;
        }

        #cookie-consent-popup a {
            color: #007bff; /* Blue for the link */
            text-decoration: none;
            margin-top: 10px;
            display: inline-block;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        #cookie-consent-popup a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        /* Basic Inter font import for better aesthetics */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');