.dop-push-popup {
  --dop-primary: #2271b1;
  position: fixed;
  z-index: 999999;
  max-width: 360px;
  width: calc(100% - 32px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.dop-push-popup[hidden] {
  display: none !important;
}

.dop-push-popup--bottom-left {
  left: 16px;
  bottom: 16px;
}

.dop-push-popup--bottom-right {
  right: 16px;
  bottom: 16px;
}

.dop-push-popup--top-left {
  left: 16px;
  top: 16px;
}

.dop-push-popup--top-right {
  right: 16px;
  top: 16px;
}

.dop-push-popup__inner {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.dop-push-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

.dop-push-popup__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--dop-primary) 12%, white);
  color: var(--dop-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.dop-push-popup__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
  color: #1d2327;
}

.dop-push-popup__message {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #50575e;
}

.dop-push-popup__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dop-push-popup__accept,
.dop-push-popup__dismiss {
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.dop-push-popup__accept {
  background: var(--dop-primary);
  color: #fff;
}

.dop-push-popup__accept:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dop-push-popup__dismiss {
  background: #f0f0f1;
  color: #1d2327;
}

.dop-push-popup__status {
  margin: 12px 0 0;
  font-size: 13px;
  color: #008a20;
}

@media (max-width: 480px) {
  .dop-push-popup {
    left: 16px !important;
    right: 16px !important;
    width: auto;
    max-width: none;
  }
}
