#mainWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
  }

  #container {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  button {
    background-color: #ff7525;
    /* Primary color */
    border: none;
    color: white;
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #c37208;
    /* Darker shade for hover */
  }

  button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
  }

  img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  #loadingSpinner {
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
  }


  .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ee8036;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }