 #consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #f3f3f3;
            color: #333;
            padding: 15px;
            display: none; /* Първоначално скрит */
            box-shadow: 0px -2px 10px rgba(0,0,0,0.2);
            text-align: center;
        }
        #consent-banner button {
            margin: 5px;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
        }
        #accept-btn {
            background-color: #4CAF50;
            color: white;
        }
        #decline-btn {
            background-color: #f44336;
            color: white;
        }
