.page-selector {
  position: fixed;
  left: calc(70px + 12px);
  bottom: 25px;
  width: 280px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 10px;
}

@keyframes selector-pop {
  0%   { transform: scale(0.97); }
  60%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.page-selector.open {
  display: flex;
  transform-origin: center;
  animation: selector-pop 0.2s ease forwards;
}

.selector-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: left;
  border-radius: 10px;
  transition: background 0.12s ease;
  flex-shrink: 0;
}

.selector-item:hover {
  background: rgba(0, 0, 0, 0.06);
}

.selector-item--danger span {
  color: #e53e3e;
}
