:host {
  position: relative;
}

.menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-item {
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.menu-item:hover {
  background-color: #f5f5f5;
}

.icon {
  cursor: pointer;
}

:host([opened]) .menu {
  display: block;
}
:host(:hover) {
  cursor: pointer;
}
