#cb-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #111827;
  color: #f9fafb;
  padding: 1rem 1.5rem;
  z-index: 9999;
  font-size: 0.9rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.35);
}
#cb-cookie-banner .cb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#cb-cookie-banner p {
  margin: 0;
}
#cb-cookie-banner a {
  color: #93c5fd;
  text-decoration: underline;
}
#cb-cookie-banner .actions {
  display: flex;
  gap: 0.5rem;
}
#cb-cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
}
#cb-cookie-banner #cb-btn-accept {
  background: #10b981;
  color: #022c22;
}
#cb-cookie-banner #cb-btn-deny {
  background: #4b5563;
  color: #e5e7eb;
}
@media (max-width: 640px) {
  #cb-cookie-banner .cb-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
