#cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
  padding: 16px;
  font-family: inherit;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-consent-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-actions button {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font: inherit;
}

.cookie-consent-actions button[data-consent="denied"] {
  background: transparent;
  color: #fff;
}

.cookie-consent-actions button[data-consent="granted"] {
  background: #fff;
  color: #111;
}

@media (max-width: 640px) {
  #cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-consent-inner {
    align-items: stretch;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-actions button {
    flex: 1;
  }
}
