	.modal-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .modal-content {
      background-color: #fff;
      padding: 20px;
      border-radius: 5px;
      text-align: center;
    }

    .modal-logo {
      width: 200px; /* Adjust the width as needed */
      margin-bottom: 20px;
    }

    .modal-button {
      padding: 8px 16px;
      margin-top: 20px;
      background-color: #4CAF50;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
	
	.modal {
        display: none;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
		
    }
    .modal-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
		margin: 40px;
    }
    .modal-content h2 {
        margin-top: 0;
    }
    .modal-content p {
        margin: 10px 0;
		margin-bottom: 20px;
    }