.ptr-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 0;
  overflow: visible;
  pointer-events: none;
  transition: height 0.2s ease;
}

.ptr-root.ptr-active {
  transition: none;
}

.ptr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px 14px;
  color: var(--primary, #1e6bb8);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.ptr-root.ptr-visible .ptr-inner {
  opacity: 1;
  transform: translateY(0);
}

.ptr-root.ptr-ready .ptr-inner {
  color: var(--success, #1e8449);
}

.ptr-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(30, 96, 184, 0.2);
  border-top-color: var(--primary, #1e6bb8);
  border-radius: 50%;
  animation: ptr-spin 0.7s linear infinite;
  opacity: 0;
}

.ptr-root.ptr-refreshing .ptr-spinner {
  opacity: 1;
}

.ptr-root.ptr-refreshing .ptr-label-pull,
.ptr-root.ptr-refreshing .ptr-label-release {
  display: none;
}

@keyframes ptr-spin {
  to {
    transform: rotate(360deg);
  }
}

html.ptr-refreshing,
html.ptr-refreshing body {
  overflow: hidden;
}
