/* ═══════════════════════════════════════════════════════════
   RED PULSE SYSTEMS - Actions Menu Only CSS
   Consolidated actions dropdown menu styling
   ═══════════════════════════════════════════════════════════ */

/* ─── Consolidated Action Menu ───────────────────────────── */
.inv-action-menu-container {
  position: relative;
  display: inline-block;
}

.inv-action-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.inv-action-menu-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-secondary);
}

.inv-action-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  overflow: hidden;
}

.inv-action-dropdown.hidden {
  display: none;
}

.inv-action-group {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-primary);
}

.inv-action-group:last-child {
  border-bottom: none;
}

.inv-action-group-label {
  padding: 4px 16px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inv-action-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.inv-action-item:hover {
  background: var(--bg-secondary);
}

.inv-action-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}