/* Settings popup styles */

.pp-settings-wrapper {
  position: relative;
}

.pp-settings-popup {
  position: absolute;
  bottom: 110%;
  left: -30px;
  transform: translateX(-50%);
  background: rgba(24, 24, 32, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  z-index: 100;
  min-width: 120px;
  white-space: nowrap;
}

.pp-settings-item {
  cursor: pointer;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
  background: transparent;
}

.pp-settings-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pp-settings-item:last-child {
  border-bottom: none;
}

/* Menu item selection states */
.pp-menu-item-selected {
  background: rgba(33, 150, 243, 0.3) !important;
}

/* Checkmark visibility states */
.pp-checkmark-visible {
  visibility: visible !important;
  color: #2196f3 !important;
}

.pp-checkmark-hidden {
  visibility: hidden !important;
  color: #fff !important;
} 