#meow-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--consent-bg, #1a1a2e);
  color: var(--consent-fg, #e0e0e0);
  font-family: var(--consent-font, system-ui, -apple-system, sans-serif);
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

#meow-consent-banner[hidden] {
  display: none;
}

#meow-consent-banner p {
  margin: 0;
  flex: 1;
}

.meow-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.meow-consent-actions button {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.meow-consent-actions button:hover {
  opacity: 0.85;
}

.meow-consent-actions button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

#meow-consent-accept {
  background: var(--consent-accept-bg, #5b52e0);
  color: var(--consent-accept-fg, #fff);
}

#meow-consent-reject {
  background: var(--consent-reject-bg, #444);
  color: var(--consent-reject-fg, #e0e0e0);
}

@media (max-width: 600px) {
  #meow-consent-banner {
    flex-direction: column;
    text-align: center;
  }
}
