 /*#donationModal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            z-index: 1000;
            text-align: center;
	 		overflow-y: auto;
        }

        #donationModal.active {
            display: block;
        }*/

		 /* Modal */
    #donationModal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      width: 90%;
      max-width: 420px;
      max-height: 90vh;
      overflow-y: auto;
      overflow-x: hidden;
      display: none;
      z-index: 1000;
	  text-align: center;
    }

    #donationModal.active,
    #overlay.active {
      display: block;
    }

        #thankYouMessage {
            display: none;
            text-align: center;
            margin-top: 20px;
            color: green;
        }

        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
/*			overflow-y: scroll;*/
        }

        .button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 3px 10px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 0px; //20px
        }

        .button:hover {
            background-color: #218838;
        }

		input[type="number"] {
      width: 100%;
      padding: 8px;
      margin: 10px 0;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    /*#paypal-button-container {
      margin-top: 20px;
    }*/

	 #paypal-button-container iframe {
      max-width: 100% !important;
      width: 100% !important;
    }

  /*   Mobile Friendly 
    @media (max-width: 480px) {
      nav ul li {
        margin-right: 10px;
      }
      .button {
        padding: 8px 16px;
        font-size: 14px;
      }
    }*/