.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.cookie-modal.show {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #000;
  max-width: 420px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-align: left;
}
.cookie-modal-content h2 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.cookie-modal-content p {
  margin-bottom: 1rem;
  line-height: 1.4;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.cookie-modal-actions button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}
.cookie-accept {
  background: #4caf50;
  color: #fff;
}
.cookie-decline {
  background: #f44336;
  color: #fff;
}
