/* ==== MODALS ==== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: var(--pp-white);
  border: 2px solid var(--pp-black);
  border-radius: 8px;
  padding: 1.5rem;
  width: 320px;
}
.modal-content h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  border: 2px solid var(--pp-black);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: inherit;
}
.modal-content button {
  width: 100%;
  background: var(--pp-blue);
  color: var(--pp-white);
  border: 2px solid var(--pp-black);
}
