#analytics-consent-banner {
  display: none;

  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;

  max-width: 760px;
  margin: 0 auto;

  padding: 18px 20px;

  background: #ffffff;
  color: #222222;

  border: 1px solid #dddddd;
  border-radius: 12px;

  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.15);

  z-index: 99999;

  align-items: center;
  justify-content: space-between;
  gap: 20px;

  font-size: 14px;
  line-height: 1.5;
}

.analytics-consent-text {
  flex: 1;
}

.analytics-consent-text a {
  text-decoration: underline;
}

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

.analytics-consent-button {
  border: none;
  border-radius: 7px;

  padding: 9px 16px;

  cursor: pointer;
  font-size: 14px;
}

.analytics-consent-accept {
  background: #222222;
  color: #ffffff;
}

.analytics-consent-reject {
  background: #eeeeee;
  color: #222222;
}

@media (max-width: 600px) {
  #analytics-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;

    flex-direction: column;
    align-items: stretch;
  }

  .analytics-consent-buttons {
    width: 100%;
  }

  .analytics-consent-button {
    flex: 1;
  }
}

@media (prefers-color-scheme: dark) {
  #analytics-consent-banner {
    background: #222222;
    color: #f5f5f5;
    border-color: #444444;
  }

  .analytics-consent-accept {
    background: #ffffff;
    color: #222222;
  }

  .analytics-consent-reject {
    background: #444444;
    color: #ffffff;
  }
}