/* ///////////////////////// */
/* Bounce Capture */
  

 .modal-header {
    text-align: center;
    max-width: 60%;
 }
  .modal-content {
    background-color: #fff;
    margin: 0 auto; /* Update this line to center the modal horizontally */
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    border: 3px solid #7a0000;
  }
  
  .close {
    float: right;
    cursor: pointer;
  }
 
  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value to set the darkness of the overlay */
    z-index: 9998; /* Set a z-index lower than the modal to ensure it's positioned behind the modal */
 }
 
 @keyframes fadeUp {
 from {
  opacity: 0;
  transform: translate(-50%, -100%);
 }
 to {
  opacity: 1;
  transform: translate(-50%, -50%);
 }
 }