						#modal-loading {
							display: none; 
							position: fixed;  
							z-index: 9999; 
							left: 0;
							top: 0;
							width: 100%; 
							height: 100%; 
							background-color: rgba(0, 0, 0, 0.6); 
							align-items: center; 
							justify-content: center;
							text-align: center;
						}


						#modal-loading .modal-content {
							background-color: white;
							border-radius: 5px;
							padding: 20px;
							text-align: center;
							display: inline-block;
							position: relative;
						}


						#modal-loading .loading-image {
							width: 250px;
							height: 250px;
							animation: spin 1s linear infinite;
						}

						#finalMessage {
							display: none; 
							position: fixed; 
							z-index: 10000; 
							left: 50%;
							top: 50%;
							transform: translate(-50%, -50%);
							background-color: white;
							border: 1px solid #ddd;
							border-radius: 5px;
							padding: 15px 30px;
							font-size: 16px;
							color: #333;
							text-align: center;
							box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
						}

		/* 				@keyframes spin {
							0% { transform: rotate(0deg); }
							100% { transform: rotate(360deg); }
						} */
