/* Cookie Consent Banner styles for Google Consent Mode v2 imitation */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  z-index: 9999;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}
.cookie-consent-banner .cookie-consent-text {
  margin-bottom: 16px;
  color: #222;
  text-align: center;
}
.cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
}
.cookie-consent-banner .accept {
  background: #4caf50;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #f44336;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #e0e0e0;
  color: #222;
}
