 /* Stile del banner */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 15px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none; /* Nascondi inizialmente il banner */
        }

        #cookie-banner button {
            background-color: #ce1212;
            color: white;
            border: none;
            padding: 10px 20px;
            margin-left: 10px;
            cursor: pointer;
            border-radius: 5px;
        }

        #cookie-banner button:hover {
            background-color: #ce1212;
        }
        