#privacy-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 350px;
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  display: none;
}
#privacy-consent p {
  margin: 0 0 12px 0;
  padding: 0;
}
#privacy-consent a {
  color: #4a9eff;
  text-decoration: underline;
}
#privacy-consent a:hover {
  color: #66b3ff;
}
.consent-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.consent-buttons button {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s;
}
.btn-accept {
  background-color: #28a745;
  color: #ffffff;
}
.btn-accept:hover {
  background-color: #218838;
}
.btn-decline {
  background-color: #6c757d;
  color: #ffffff;
}
.btn-decline:hover {
  background-color: #5a6268;
}
@media (max-width: 480px) {
  #privacy-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 14px;
  }
  .consent-buttons {
    flex-direction: column;
  }
}