/* Buton görünümünü tanımla */
#ast-scroll-top {
  background-color: #7FBC05 !important;  /* Yeşil kutu */
  color: #ffffff !important;             /* Beyaz ikon */
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 20px !important;
  z-index: 9999 !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Scroll sonrası görünsün */
#ast-scroll-top.scroll-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* İkon stilleri */
#ast-scroll-top span,
#ast-scroll-top svg,
#ast-scroll-top .ast-scroll-top-icon::before {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Menü öğelerinde tıklama sonrası görünen beyaz kenarlığı kaldırır */
.main-header-menu a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.wpforms-submit.mymentora-submit {
  background-color: #7FBC05 !important;
  border: none;
  color: white !important;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.wpforms-submit.mymentora-submit:hover {
  background-color: #6aac03 !important;
  color: #ffffff !important;
}

#popupForm {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  z-index: 9999;
  border-radius: 12px;
}

/* Görünür olunca bu sınıf eklenecek */
#popupForm.active {
  display: block;
}

/* Form popup görselliği */
#popupForm.popupFormBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

/* Görünür olduğunda */
#popupForm.popupFormBox.active {
  display: block;
}

/* Kapatma butonu */
#popupForm .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: #7FBC05;
  color: white;
  border: none;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

