/* plugin-styles.css */

/* Basic Styles */
.button-container {
  text-align: center;
  margin-top: 20px;
}

.btn .button-text {
  margin: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  text-transform: none;
}

.icon {
  display: inline-block;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.popup-content {
  padding: 40px 20px 20px;
  border-width: 1px;
  border-style: solid;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10000;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

.popup-content-container {
  text-align: center;
  padding-top: 20px;
}

.ad-container .ad-content {
  width: 100%;
  height: auto;
  /* You can add additional styles for the ad content if needed */
}

@media (max-width: 600px) {
  .popup-content-container {
      flex-direction: column;
  }
  .popup-content {
      width: 90%;
  }
}
