/* === Google Verify Button === */
.custom-g-verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  text-align: center;
  background-color: #25D366;
  color: #000;
  border-radius: 10px;
  position: absolute;
  z-index: 9999;
  font-size: 14px;
}

/* === Hover State === */
.custom-g-verify-btn:hover {
  background-color: #26A454;
  color: white;
}


/* === Responsive Layout === */
/*button customization on mobile*/
@media (max-width: 767px) {
  .custom-g-verify-btn {
    bottom: 43.9%;
    right: 8px;
  }
}

@media (max-width: 767px) { .custom-g-verify-btn {  font-size: 12px; padding:4px 7px;} }



/*button customization on desktop*/
@media (min-width: 768px) {
  .custom-g-verify-btn {
    bottom: 39.9%;
    right: 8%;
  }
}