#privacy-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 16px;
  z-index: 10001;
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
#privacy-consent p {
  margin: 0 0 12px 0;
  color: #333333;
}
#privacy-consent a {
  color: #007bff;
  text-decoration: none;
}
#privacy-consent a:hover {
  text-decoration: underline;
}
#privacy-consent .cookie-buttons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
#privacy-consent button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
#privacy-consent .accept-btn {
  background-color: #007bff;
  color: white;
}
#privacy-consent .close-btn {
  background-color: #6c757d;
  color: white;
}
#privacy-consent button:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  #privacy-consent {
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  #privacy-consent .cookie-buttons {
    flex-direction: column;
  }
}