#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.92);
  color: rgb(226, 226, 226);
  font-family: HelveticaNeue-Light, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.ccb-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ccb-text {
  flex: 1;
  min-width: 280px;
  margin: 0;
}

.ccb-link {
  color: rgb(13, 190, 237);
  text-decoration: none;
}

.ccb-link:hover {
  text-decoration: underline;
}

.ccb-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ccb-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  font-family: HelveticaNeue, sans-serif;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.ccb-btn-accept {
  background-color: rgb(13, 190, 237);
  color: rgb(255, 255, 255);
}

.ccb-btn-accept:hover {
  background-color: rgb(10, 160, 205);
}

.ccb-btn-reject {
  background-color: transparent;
  color: rgb(226, 226, 226);
  border: 1px solid rgb(120, 120, 120);
}

.ccb-btn-reject:hover {
  border-color: rgb(200, 200, 200);
  color: rgb(255, 255, 255);
}

@media (max-width: 600px) {
  .ccb-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ccb-buttons {
    justify-content: stretch;
  }

  .ccb-btn {
    flex: 1;
  }
}
