
        /* Стили плашки */
        #cookie-banner {
            font-family: sans-serif;
            margin: 0;
            padding: 20px;
            line-height: 1.6;

            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #ffffff;
            color: #333;
            padding: 20px;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            display: none; /* Скрыто по умолчанию */
            z-index: 9999;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #e0e0e0;
            max-width: 800px;
            margin: auto;
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 600px) {
            #cookie-string {
                margin-bottom: 15px;
                font-size: 14px;
            }
            #cookie-banner {
                flex-direction: column;
                text-align: center;
                bottom: 10px;
                left: 10px;
                right: 10px;
            }
        }

        #cookie-string {
            font-size: 14px;
            margin-right: 20px;
        }

        #cookie-string a {
            color: #007bff;
            text-decoration: none;
        }

        #cookie-string a:hover {
            text-decoration: underline;
        }

        /* Кнопка принятия */
        #cookie-accept-btn {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
            transition: background 0.3s ease;
            white-space: nowrap;
        }

        #cookie-accept-btn:hover {
            background-color: #218838;
        }
