.share-profile-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.share-profile-modal[hidden] {
  display: none !important;
}
.share-profile-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 10, 24, 0.62);
  pointer-events: none;
}
.share-profile-modal__dialog {
  position: relative;
  width: min(480px, 100%);
}
.share-profile-modal__title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f4edff;
}
.session-expired-modal__message {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(228, 220, 255, 0.85);
}
.share-profile-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.share-profile-modal__copy.btn {
  width: auto;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #4a30fc, #b87cfb);
  color: #fff;
  font-weight: 600;
  padding: 0 18px;
  min-height: 40px;
}
.share-profile-modal__cancel.btn {
  width: auto;
  border: 1px solid rgba(192, 132, 252, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #e8deff;
  font-weight: 600;
  padding: 0 18px;
  min-height: 40px;
}
.logout-confirm-modal .share-profile-modal__backdrop {
  pointer-events: auto;
  cursor: pointer;
}
