/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
}
.modal h2      { font-size: 18px; margin-bottom: 20px; }
.modal-footer  { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }
