/* Styles pour la bannière de consentement aux cookies */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            padding: 15px;
            text-align: center;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

        .cookie-banner p {
            margin: 0;
            flex: 1;
            padding-right: 10px;
        }

        .cookie-banner button {
            background-color: #FF6347;
            border: none;
            color: #fff;
            padding: 10px 15px;
            cursor: pointer;
            margin: 0 5px;
            font-size: 16px;
            border-radius: 5px;
        }

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