.custompopup-overlay {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.custompopup-modal {
  position: relative;
  max-width: 800px;
  width: 90%;
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin: 10px;
}

.custompopup-close {
  position: absolute;
  top: 6px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.custompopup-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}

.custompopup-content {
  font-size: 14px;
  margin-bottom: 15px;
}

.custompopup-footer {
  text-align: right;
}

.custompopup-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #2fb5d2;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
}

.custompopup-button:hover {
  background-color: #2491aa;
}
