
        .pul-overlay__body {
            background: #fff;
            border-radius: 8px;
            max-width: 600px;
            margin: 30px auto;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e5e5;
            display: none;
            position: fixed;
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
        }

        .pul-dialog__header {
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid #e5e5e5;
            background-color: #f9f9f9;
            padding: 16px;
        }

        .pul-dialog__banner {
            text-align: center;
            margin-bottom: 12px;
        }

.pul-dialog__banner-inner {
    max-width: 100%;
    height: auto;
    display: block;
}


        .pul-dialog__title {
            font-size: 20px;
            margin: 0;
            color: #333;
        }

        .pul-dialog__subtitle {
            font-size: 14px;
            color: #888;
        }

        .pul-dialog__content {
            padding: 20px;
        }

        .pul-dialog__buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .pul-button {
            background: #0073aa;
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
        }

        .pul-button:hover {
            background: #005f8d;
        }

        .pul-button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .pul-link {
            color: #0073aa;
            text-decoration: none;
        }

        .pul-link:hover {
            text-decoration: underline;
        }

        .pul-close {
            background: none;
            border: none;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            color: #555;
        }

        .pul-close:hover {
            color: #000;
        }

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.pul-overlay__body {
  background: #fff;
  border-radius: 8px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.pul-dialog__header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f9f9f9;
  padding: 16px;
}

.pul-dialog__banner {
  text-align: center;
  margin-bottom: 12px;
}


.pul-dialog__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pul-dialog__header-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pul-dialog__header-content {
  flex-grow: 1;
}

.pul-dialog__title {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.pul-dialog__subtitle .pul-text--muted {
  font-size: 14px;
  color: #888;
}

.pul-dialog__header-actions {
  margin-left: 12px;
}

.pul-button {
  border: none;
  background: #0073aa;
  color: white;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
}

.pul-button--ghost {
  background: transparent;
  color: #0073aa;
}

.pul-button--empty {
  padding: 0;
}

.pul-button--disabled,
.pul-button[disabled] {
  background: #ccc;
  color: #777;
  cursor: not-allowed;
}

.pul-button__inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pul-button__icon svg,
.pul-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pul-dialog__content {
  padding: 20px 16px;
}

.pul-heading--h2 {
  font-size: 20px;
  font-weight: bold;
}

.pul-heading--h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.pul-paragraph {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.pul-link {
  color: #0073aa;
  text-decoration: none;
}

.pul-link:hover {
  text-decoration: underline;
}

.pul-dialog__buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.pul-spinner {
  animation: spin 1s linear infinite;
  width: 16px;
  height: 16px;
}

.pul-spinner__path {
  stroke: #0073aa;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.pul-dialog__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}


/* .pul-dialog__banner-inner {
    max-height: 100px;
    object-fit: contain;
} */
