        #hans-a-traber {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #ce08c2;
            color: white;
            padding: 15px;
            text-align: center;
            display: none;
            z-index: 1000;
        }
        #cookie-consent-options button {
            padding: 8px 15px;
            margin: 0 5px;
            cursor: pointer;
        }
        #cookie-settings-link {
            cursor: pointer;
            text-decoration: underline;
            color: #ffffff;
            display: none; /* Hide by default, show with JS */
            position: fixed;
            bottom: 10px;
            right: 10px;
            background-color: #333;
            padding: 5px 10px;
            border-radius: 4px;
            z-index: 999;
        }
        #cookie-settings-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        #cookie-settings-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            border: 1px solid #ccc;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            color: #333;
        }
        #cookie-settings-modal button {
            padding: 8px 15px;
            margin: 10px 5px;
            cursor: pointer;
            display: block;
            width: 100%;
        }
        .hidden { display: none !important; }