#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;                  /* центрируем */
  transform: translateX(-50%);/* смещение в центр */
  background: #222;
  color: #fff;
  padding: 10px 15px;
  display: inline-flex;        /* подстраиваемся под содержимое */
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  border-radius: 8px 8px 0 0;
  max-width: 90%;             /* ограничение, чтобы не вылезало за экран */
  white-space: normal;        /* перенос строк разрешён */
}

#cookie-banner a {
  color: #4ea3ff;
  text-decoration: underline;
}

#cookie-banner button {
  background: transparent;   /* без фона */
  color: #4ea3ff;            /* в цвет ссылки */
  border: 1px solid #4ea3ff; /* тонкая рамка */
  padding: 2px 6px;          /* совсем компактно */
  border-radius: 3px;
  cursor: pointer;
  font-size: 10px;           /* маленький текст */
  line-height: 1.2;
}

#cookie-banner button:hover {
  background: #4ea3ff;   /* при наведении подсветка */
  color: #fff;
}