#bcc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2e2e2e;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  font-size: 15px;
}
#bcc-banner p {
  margin: 0 0 0.75rem;
  line-height: 1.4;
  max-width: 900px;
}
#bcc-banner button {
  margin: 0 .5rem;
  padding: .5rem 1.25rem;
  border: none;
  border-radius: .25rem;
  cursor: pointer;
  font-weight: 600;
}
#bcc-accept {
  background-color: #4caf50;
  color: #fff;
}
#bcc-reject {
  background-color: #777;
  color: #fff;
}
#bcc-banner.hidden {
  display: none;
}
