.gg-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(440px, calc(100vw - 32px));
  padding: 22px;
  color: #fff;
  background: rgba(6, 22, 50, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(7, 26, 61, 0.3);
}

.gg-consent-banner[hidden],
.gg-consent-settings[hidden] {
  display: none !important;
}

.gg-consent-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.gg-consent-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.gg-consent-text a {
  color: #50d9c8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gg-consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.gg-consent-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.gg-consent-button--accept {
  color: #042e2a;
  background: #42d7c5;
  border-color: #42d7c5;
}

.gg-consent-button--reject {
  color: #fff;
  background: transparent;
}

.gg-consent-settings {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9998;
  padding: 8px 12px;
  color: #344054;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 35, 70, 0.14);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 28, 66, 0.12);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .gg-consent-banner {
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .gg-consent-actions {
    flex-direction: column;
  }

  .gg-consent-button {
    width: 100%;
  }
}
