
#gg-cookiebar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 99999;
}

#gg-cookiebar p {
  margin: 0;
  flex: 1;
}

#gg-cookiebar button,
#gg-cookiebar a {
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
}

#gg-cookiebar button.deny {
  background: transparent;
  color: #fff;
  border: 1px solid #666;
}

@media (max-width: 600px) {
  #gg-cookiebar {
    flex-direction: column;
    align-items: stretch;
  }
  #gg-cookiebar p {
    margin-bottom: 8px;
  }
}
