body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#adModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#adModalContent {
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

#closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  z-index: 10000;
}

#bannerOverlay {
  width: 300px;
  height: 250px;
  margin: 0 auto;
  border: 0px solid red;
}

.adsbygoogle {
  display: block !important;
}

#loadingCanvas {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,1);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}

.canvas-content {
  background-color: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#adBanner {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
}

#loadingText {
  margin-bottom: 15px;
  font-size: 16px;
  color: rgb(255, 255, 255);
}

.progress-container {
  width: 100%;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
}

#progressBar {
  width: 0;
  height: 10px;
  background-color: #4CAF50;
  transition: width 0.5s ease;
}
