/* Basic popup styling */
.pavel-popup-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
}
.pavel-popup-wrap[aria-hidden="false"] {
  display: flex;
}
.pavel-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.pavel-popup {
  position: relative;
  max-width: 960px;
  width: calc(100% - 40px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pavel-popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.pavel-popup-title {
  margin-top: 0;
}
