/* Quality control styles */

.pp-quality-current {
  color: #ccc;
  font-size: 13px;
  margin-left: 8px;
}

.pp-quality-submenu {
  position: absolute;
  bottom: 0;
  right: 100%;
  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: 101;
  min-width: 150px;
  white-space: nowrap;
  margin-right: 8px;
}

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

.pp-quality-option:last-child {
  border-bottom: none;
}

.pp-quality-option:hover:not(.selected) {
  background: rgba(255, 255, 255, 0.1) !important;
}

.pp-quality-option.selected {
  background: rgba(33, 150, 243, 0.3) !important;
}

.pp-quality-checkmark {
  font-size: 16px;
  font-weight: bold;
  color: #2196f3;
} 