.dropmarket {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropmarket-trigger {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
  cursor: pointer;
}

.dropmarket-trigger:hover {
  background: #e5e7eb;
}

.dropmarket-menu {
  position: absolute;
  right: calc(100% + 8px);
  top: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  padding: 6px;
  display: none;
  z-index: 1200;
}

.dropmarket.open .dropmarket-menu {
  display: block;
}

.dropmarket-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  font-size: 13px;
  cursor: pointer;
}

.dropmarket-item:hover {
  background: #f3f4f6;
}

@media (max-width: 768px) {
  .dropmarket-menu {
    position: fixed;
    right: -28px;
    top: auto;
    left: auto;
    min-width: 100%;
    max-width: calc(100vw - 16px);
  }
}
