body.modal-open {
  overflow: hidden;
}

.user-card details[open] {
  position: static;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(8, 27, 52, .52);
}

.manage-panel {
  padding: 68px 24px 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #bfd0dd;
  border-radius: 10px;
  background: #fff;
  color: #10294d;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: #0798e8;
  background: #eaf7fe;
  color: #0478ba;
  outline: 3px solid rgba(7, 152, 232, .2);
}

@media (max-width: 720px) {
  .manage-panel {
    top: 3vh;
    width: calc(100vw - 20px);
    max-height: 94vh;
    padding: 64px 16px 20px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }
}
