/* Status popup (shared) - used by orders list + order view */

.status-popup {
  position: fixed;
  z-index: 3000;
  width: 260px;
  border: 1px solid var(--admin-border);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--admin-shadow);
  padding: 10px;
}

.status-popup-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--admin-muted);
  margin-bottom: 8px;
}

.status-popup-list {
  display: grid;
  gap: 6px;
}

.status-popup-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--admin-border);
  background: #fff;
  border-radius: 10px;
  padding: 9px 10px;
  cursor: pointer;
  font-weight: 650;
  display: flex;
  align-items: center;
}

.status-popup-item:hover {
  border-color: rgba(96, 100, 108, 0.35);
  background: rgba(96, 100, 108, 0.04);
}

.status-popup-item.is-active {
  border-color: rgba(96, 100, 108, 0.35);
  background: rgba(96, 100, 108, 0.08);
}

