#frss-ctx-menu {
  position: fixed;
  z-index: 99999;
  border-radius: 8px;
  padding: 6px 0;
  min-width: 230px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  backdrop-filter: blur(8px);
  display: none;
  background: #fff;
  border: 1px solid #d0d0d0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

#frss-ctx-menu.frss-dark {
  background: #2b2f36;
  border-color: #555;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .5);
}

.frss-ctx-header {
  padding: 6px 12px 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  color: #666;
}

#frss-ctx-menu.frss-dark .frss-ctx-header {
  color: #aaa;
}

.frss-ctx-item {
  padding: 7px 16px 7px 12px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  margin: 1px 4px;
  transition: background 0.1s;
  font-size: 13px;
  color: #333;
}

#frss-ctx-menu.frss-dark .frss-ctx-item {
  color: #e0e0e0;
}

.frss-ctx-item:hover {
  background: #e8f0fe;
}

#frss-ctx-menu.frss-dark .frss-ctx-item:hover {
  background: #3a3f47;
}

.frss-ctx-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.frss-ctx-label {
  flex: 1;
}

.frss-ctx-sep {
  height: 1px;
  margin: 4px 12px;
  background: #e0e0e0;
}

#frss-ctx-menu.frss-dark .frss-ctx-sep {
  background: #444;
}

/* Configure page styles */
.rca-actions { padding-left: 1.5em; }
.rca-actions.rca-disabled { opacity: 0.4; }
.rca-group-label { margin-top: 0.5em; margin-bottom: 0.2em; font-size: 0.85em; color: inherit; opacity: 0.6; font-weight: 600; }
