#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.5rem;
}

#consent-banner .consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#consent-banner .consent-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: #333;
  margin: 0;
}

#consent-banner .consent-text a {
  color: #0d6efd;
  text-decoration: underline;
}

#consent-banner .consent-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

#consent-banner .btn-consent-accept {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
}

#consent-banner .btn-consent-accept:hover {
  background-color: #0b5ed7;
}

#consent-banner .btn-consent-deny {
  background-color: #fff;
  color: #555;
  border: 1px solid #adb5bd;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
}

#consent-banner .btn-consent-deny:hover {
  background-color: #f8f9fa;
}
