/* Minimalist icon, color via 'color' (inlined from settings) */
.deepnet-pci-button {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: auto;
  height: auto;
  box-shadow: none;
}

.admin-bar .deepnet-pci-button { top: 48px; }

.deepnet-pci-button.deepnet-pci--within-container {
  position: absolute;
  top: 0;
  right: 0;
}

.deepnet-pci-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.deepnet-pci-badge {
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  right: auto;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: #e02424;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 160ms ease-out;
}

.deepnet-pci-badge.is-visible { transform: translateY(-50%) scale(1); }
