/* AppMenu */
.app-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.app-menu button {
  background: transparent;
  border: none;
  padding: 4px; /* Small padding for easier tapping */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  -webkit-tap-highlight-color: transparent; /* Clean touch for Pixel 10 */
}
.app-menu .app-menu-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: #064e3b;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
  /* Initial state */
  transform: rotate(-15deg);
  /* Run your landing animation */
  animation: app-menu-icon-drop 0.8s ease-out forwards;
}
.app-menu {
  /* Optional: Subtle hover/active effect for the icon */
}
.app-menu button:active .app-menu-icon {
  transform: scale(0.9) rotate(-15deg);
  opacity: 0.8;
}
.app-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1000;
}
.app-menu ul.active {
  display: block;
}
.app-menu ul li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}
.app-menu ul li a:hover {
  background-color: #f8f9fa;
}
.app-menu ul li .menu-divider {
  height: 1px;
  background: #eee;
  margin: 5px 0;
  overflow: hidden;
  text-indent: -9999px;
}

@keyframes app-menu-icon-drop {
  0% {
    transform: translateY(-10px) rotate(10deg) scale(1.2);
    opacity: 0;
  }
  30% {
    transform: translateY(0) rotate(-25deg) scale(1.1);
    opacity: 1;
  }
  60% {
    transform: rotate(-10deg) scale(1.05);
  }
  100% {
    transform: rotate(-15deg) scale(1);
  }
}
/* _CopyButton */
.textedit-container {
  position: relative;
}

.copy-btn {
  position: absolute;
  right: 2em;
  bottom: 1%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.textedit-container:hover .copy-btn,
.textedit-container:focus-within .copy-btn {
  opacity: 1;
}

/* UserProfileMenu */
.user-profile-menu {
  display: flex;
  align-items: center;
}

.user-profile-menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.user-profile-menu button:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.user-profile-menu button:active {
  background-color: #dee2e6;
  transform: scale(0.95);
}

.user-profile-icon {
  font-size: 1.1rem;
  color: #495057;
}

/*# sourceMappingURL=viewcomponents.css.map */
