.app-popup-select-menu {
  position: fixed;
  z-index: 100120;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 8px;
  overflow: auto;
}

.app-popup-select-header {
  padding: 8px 10px 10px;
  margin: -8px -8px 6px;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  background: var(--bg-card, #fff);
  border-top-left-radius: var(--radius-md, 8px);
  border-top-right-radius: var(--radius-md, 8px);
  font-size: 12px;
  color: var(--text-tertiary, #848e9c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-popup-select-title {
  font-size: 12px;
  color: var(--text-tertiary, #6b7280);
  padding: 8px 10px 6px;
}

.app-popup-select-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  color: var(--text-primary, #111827);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.app-popup-select-check {
  width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  color: var(--text-success, var(--success, #0ecb81));
  flex: 0 0 16px;
}

.app-popup-select-item.is-active .app-popup-select-check {
  opacity: 1;
}

.app-popup-select-item:hover {
  background: var(--bg-hover, rgba(240, 185, 11, 0.12));
}

.app-popup-select-item.is-active {
  background: rgba(240, 185, 11, 0.16);
  color: var(--text-primary, #111827);
  font-weight: 600;
}

.app-popup-select-icon {
  width: 16px;
  color: var(--text-tertiary, #848e9c);
}

.app-popup-select-item.is-active .app-popup-select-icon {
  color: var(--text-success, var(--success, #0ecb81));
}

.app-popup-select-item-text {
  min-width: 0;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
