/* CO/CO.css */
#cookie-modal {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}
#cookie-modal.hidden {
  display: none;
}
#cookie-modal p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}
#cookie-modal .btn {
  margin-right: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.85rem;
}
#cookie-modal .btn-accept {
  background-color: #4caf50;
  color: #fff;
}
#cookie-modal .btn-reject {
  background-color: #f44336;
  color: #fff;
}
