/* shell.css */
.shell {
  height: 100vh;
  position: relative;
}

.shell header {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  top: auto;
  z-index: 100;
}

.shell .main-view iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.shell .menu {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 0.1s ease;
}

.shell .menu.open {
  opacity: 1;
  pointer-events: auto;
}

.shell .menu-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
}

#menuToggle {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

#menuToggle img {
  width: 50px;
  height: 50px;
  display: block;
}

a.snapshot-btn {
  text-align: center;
  color: var(--color-bg);
  background-color: black;
}

a.snapshot-btn:hover,
a.snapshot-btn:focus,
a.snapshot-btn:active {
  background-color: var(--color-text);
  text-decoration: none;
}
