.msw {
  position: fixed;
  left: 18px;
  bottom: 45px;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.msw__fab {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  background: #2ad306;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.msw__fab:active {
  transform: translateY(1px);
}

.msw__panel {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  padding: 10px;
  display: none;
}

.msw__panel.is-open {
  display: block;
}

.msw__title {
  font-size: 14px;
  color: #111;
  padding: 8px 10px 6px;
  font-weight: 700;
}

.msw__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.msw__item {
  margin: 6px 0;
}

.msw__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  background: #f6f7f9;
}

.msw__link:hover {
  background: #eef1f6;
  color: #5c5c5c;
}

.msw__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.msw__name {
  font-size: 14px;
  font-weight: 600;
}

.msw__hint {
  font-size: 12px;
  color: #666;
  margin-left: auto;
}

.msw__backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  background: transparent;
}

.msw__backdrop.is-open {
  display: block;
}

.msw__item .msw__icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}