/* Right-click context menu — article body */

.proof-ctx-menu {
  position: fixed;
  z-index: 10200;
  min-width: 200px;
  background: #fff;
  border: 1px solid #b8c5ce;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  padding: 6px 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 13px;
}

.proof-ctx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 8px 16px;
  cursor: pointer;
  color: #1c1d1e;
  font-size: 13px;
  white-space: nowrap;
}

.proof-ctx-item:hover,
.proof-ctx-item.active {
  background: #005274;
  color: #fff;
}

.proof-ctx-item--action {
  font-weight: 600;
}

.proof-ctx-item--disabled,
.proof-ctx-item:disabled {
  color: #9aa5ad;
  cursor: default;
  pointer-events: none;
}

.proof-ctx-item--disabled:hover,
.proof-ctx-item:disabled:hover {
  background: transparent;
  color: #9aa5ad;
}

.proof-ctx-arrow {
  font-size: 10px;
  opacity: 0.7;
}

.proof-ctx-submenu {
  position: fixed;
  z-index: 10201;
  min-width: 200px;
  max-width: 280px;
  max-height: 360px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #b8c5ce;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  padding: 6px 0;
  display: none;
}

.proof-ctx-submenu.open {
  display: block;
}

.proof-ctx-submenu .proof-ctx-item {
  font-weight: 400;
}

.proof-ctx-divider {
  height: 1px;
  background: #e9ecef;
  margin: 4px 0;
}
