.sheet-open,
.sheet-map-fullscreen {
  overflow: hidden;
}

.sheet-map-fullscreen {
  height: 100vh;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 18, 18, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(100%, 640px);
  max-height: 90dvh;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: var(--br-top);
  background: var(--white200);
  transform: translateY(100%);
  transition: transform 260ms ease;
  pointer-events: none;
  visibility: hidden;
}

.sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.sheet__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: min(100vh, 90dvh);
  overflow-y: auto;
}

.sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white200);
}

.sheet__header--info {
  align-items: center;
}

.sheet__title {
  font-size: 20px;
  font-weight: 700;
}

.sheet__meta {
  font-size: 13px;
  color: var(--gray200);
}

.sheet__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow-y: auto;
  padding-bottom: var(--space-10);
}

.sheet__submit {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  padding: var(--space-4);
  background: var(--white100);
  border-top: 0.5px solid var(--black025);
}

.sheet__submit--share {
  flex-direction: column;
  gap: var(--space-3);
}

.sheet__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 0;
  padding: 0 var(--space-4);
  margin-bottom: var(--space-3);
  overflow-x: hidden;
}

.sheet__note,
.sheet__value {
  color: var(--black100);
  line-height: 1.45;
  word-break: break-word;
}

.sheet-map {
  width: 100%;
  height: 35vh;
  border-radius: var(--space-4);
  background: var(--white200);
}

.sheet-map-wrap {
  position: relative;
}

.sheet-map__controls {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  display: flex;
  gap: var(--space-2);
  z-index: 32;
}

.sheet-map.is-fullscreen {
  position: fixed !important;
  inset: 0;
  z-index: 30;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}

.sheet-map-wrap.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #fff;
}

.add-sheet__search {
  display: block;
  z-index: 35;
  width: 100%;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.add-sheet__label {
  width: var(--space-10);
  margin-top: var(--space-3);
}

.share-access {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-bottom: 20px;
  border-bottom: 0.25px solid var(--gray100);
}

.share-access__option {
  align-items: center;
  background: none;
}

.share-access__option::before {
  content: "";
  flex: 0 0 28px;
  max-width: var(--space-5);
  height: var(--space-5);
  border-radius: 100px;
  border: 1px solid var(--gray100);
  background: var(--gray100);
  box-shadow: inset 0 0 0 1px var(--black025);
}

.share-access__option.is-active::before {
  box-shadow: inset 0 0 0 6px var(--black100);
}

.share-actions-row {
  display: flex;
  gap: var(--space-2);
  padding-top: 20px;
}

.share-actions-row .btn_label_fill_primary {
  flex: 1;
}

.share-qr-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--space-3);
}

.share-qr-btn img {
  width: 20px;
  height: 20px;
}

.share-password-content,
.share-qr-sheet {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 0 var(--space-4) var(--space-6);
}

.share-password-actions,
.share-qr-submit {
  display: flex;
  gap: var(--space-2);
}

.share-qr-submit .btn_label_stroke,
.share-qr-submit .btn_label_fill_primary {
  flex: 1;
}

.share-qr__code {
  width: 100%;
  padding: var(--space-4);
  border-radius: var(--space-4);
  background: var(--white100);
  display: grid;
  place-items: center;
}

.qr-image{
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.view-map {
  width: 100%;
  min-height: 320px;
  height: 320px;
}

.sheet_info_information {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-4);
}

.view-toolbar--desktop,
.view-layout--desktop {
  display: flex;
  gap: var(--space-3);
}

.view-layout--desktop {
  padding: var(--space-4);
}

.view-layout__map {
  flex: 0 0 42%;
}

.view-layout__content {
  flex: 1;
  min-width: 0;
}

#searchSheet{
    z-index: 101;
}
