/* Popup styles */
.bdg-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.bdg-popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  min-width: 300px;
  position: relative;
}

.bdg-popup-box h3 {
  margin-bottom: 10px;
}

.bdg-popup-box a {
  color: #0088cc;
  font-weight: bold;
  text-decoration: none;
}

.bdg-close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
  .bdg-popup-content iframe {
    width: 100%;
    height: 600px;
  }

  .bdg-popup-content {
    margin: 20px;
    padding: 15px;
  }
}
