#cookieBanner.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #010101;
  color: #ffffff;
  z-index: 999999999 !important; 
  padding: 16px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-align: right;
}

#cookieBanner.cookie-banner p {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 400;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

.cookie-btn.accept {
  background: #E62D36;
  color: #ffffff;
}

.cookie-btn.reject {
  background: #EDF0F2;
  color: #010101;
}

.cookie-btn:focus {
  outline: 2px solid rgba(255,255,255,0.12);
  outline-offset: 2px;
}