#rcc-cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 99999;
  max-height: 40vh;
  overflow-y: auto;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
  color: #475569;
  font: 13px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#rcc-cookie-banner .rcc-cookie-banner__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

#rcc-cookie-banner p {
  margin: 0;
}

#rcc-cookie-banner a {
  color: #15803d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#rcc-cookie-banner .rcc-cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

#rcc-cookie-banner button {
  min-height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: #334155;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
}

#rcc-cookie-banner button:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

#rcc-cookie-banner button[data-rcc-action="accept"] {
  border-color: #15803d;
  background: #15803d;
  color: #fff;
}

#rcc-cookie-banner button[data-rcc-action="accept"]:hover {
  background: #166534;
}

@media (max-width: 640px) {
  #rcc-cookie-banner .rcc-cookie-banner__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
  }

  #rcc-cookie-banner .rcc-cookie-banner__actions {
    width: 100%;
  }

  #rcc-cookie-banner button {
    flex: 1 1 auto;
  }
}
