.bbr-context-menu {
  position: relative;
  display: contents;
}
.bbr-context-menu__dropdown {
  position: fixed;
  z-index: 9999;
  min-width: 10rem;
  padding: 0.35rem 0;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  animation: bbr-context-menu-appear 0.1s ease;
}
.bbr-context-menu__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  color: #363636;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
}
.bbr-context-menu__item:hover {
  background-color: #f5f5f5;
  color: #363636;
}
.bbr-context-menu__item.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}
.bbr-context-menu__icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}

@keyframes bbr-context-menu-appear {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
