        /* Стили всплывающего окна */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(35, 35, 35, 0.95);
            color: #fff;
            padding: 15px 20px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            z-index: 10000;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        #cookie-banner-text {
            flex-grow: 1;
        }

        #cookie-banner a {
            color: #4da6ff;
            text-decoration: underline;
            margin-left: 10px;
            white-space: nowrap;
        }

        #cookie-banner button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.2s;
            min-width: 100px; /* Фиксированная ширина для стабильности кнопки */
        }

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

        /* Адаптивность для мобильных устройств */
        @media (max-width: 600px) {
            #cookie-banner {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                padding: 15px;
            }
            
            #cookie-banner-text {
                order: 1;
                margin-bottom: 10px;
            }
            
            #cookie-banner a {
                margin-left: 0;
                display: block;
                margin-bottom: 10px;
            }
            
            #cookie-banner button {
                order: 2;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }
