@charset "utf-8";
/* CSS Document */
 <style>
        #cookie-banner {
            /* Inizialmente nascosto */
            display: none; 
            
            /* Stile */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #2c3e50; /* Colore scuro */
            color: white;
            padding: 20px;
            box-sizing: border-box; /* Per includere padding nella larghezza */
            box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
            z-index: 9999;

            /* Per allineare testo e bottoni */
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; /* Va a capo su schermi piccoli */
            gap: 15px; /* Spazio tra gli elementi */
        }

        #cookie-banner-text {
            flex-grow: 1; /* Il testo occupa lo spazio disponibile */
            max-width: 70%;
            font-size: 14px;
        }

        #cookie-banner-buttons {
            display: flex;
            gap: 10px; /* Spazio tra i bottoni */
        }

        #cookie-banner button {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        #cookie-accept {
            background-color: #2ecc71; /* Verde */
            color: white;
        }

        #cookie-refuse {
            background-color: #e74c3c; /* Rosso */
            color: white;
        }

        /* Stile per schermi piccoli */
        @media (max-width: 600px) {
            #cookie-banner {
                flex-direction: column;
            }
            #cookie-banner-text {
                max-width: 100%;
                text-align: center;
            }
        }
    </style>
