.geims-appointment-form input, .geims-appointment-form select  { transition: all 250ms ease-in-out;
  width: 100%;
  box-sizing: border-box;
  min-width: 100%;
  border: none;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  box-shadow: none;
  font-size: inherit;
  letter-spacing: 0;
  outline: none;
  line-height: 50px;
  height: 50px;
  padding: 0 30px;
  text-align: left;
  font-family: inherit;

}

.book-submitt {background:#016698;
    color:#fff;
     border-color: #016698;
    padding: 5px 10px;
}


#geims-popup {
    max-width: 700px;
    width: 90%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#geims-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}



#geims-popup .geims-close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

#geims-popup .geims-close-popup:hover {
  color: #e74c3c; /* optional hover color */
}





.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-top: 10px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  