.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #c8d9d2;
  border-radius: 8px;
  color: #245247;
  background: #fff;
  font-size: 1.1rem;
}

.icon-button:hover:not(:disabled) { background: #eff8f3; }
.icon-button:disabled { cursor: not-allowed; }

.profile-modal {
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border: 1px solid #dbe7e0;
  border-radius: 8px;
  padding: 24px;
  color: #19322c;
  background: #fff;
  box-shadow: 0 16px 48px rgba(26, 65, 51, .2);
}

.profile-modal::backdrop { background: rgba(20, 42, 34, .42); }
.profile-modal form { margin: 0; }
.modal-heading { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.modal-heading h2 { margin-bottom: 0; }
.profile-modal .profile-grid { margin-top: 22px; }

@media (max-width: 640px) {
  .profile-modal { padding: 20px; }
}
