
    html {
      height: 100%;
      width: 100%;
    }


    table {
            width: 50%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid white;
            padding: 5px;
            text-align: left;
            color: white;
        }
        


    body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-image: url('https://pay.iborowilliam.com/assets/videos/mainbg.gif');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
  touch-action: none;
}

.container {
  flex: 1;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: rgba(18, 36, 66, 0.9);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 95%;
  margin: auto;
  box-sizing: border-box; /* Include padding in height calculation */
  min-height: calc(100vh - 80px); /* Account for navigation height */
  padding-bottom: 80px; /* Prevent content from being hidden behind nav */
}


    .container.active {
      display: flex;
    }

    button {
      font-size: 16px;
      padding: 15px 3px;
      margin-top: 15px;
      border: none;
      border-radius: 8px;
      background-color: #2c87d6; /* Green button */
      color: white;
      cursor: pointer;
      width: 70%;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    button:hover:not(:disabled) {
      background-color: #7b4502; /* Darker green on hover */
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    button:disabled {
  background-color: #d3d3d3; /* Gray out the button */
  color: gray; /* Light grey text */
  cursor: not-allowed; /* Change the cursor to indicate it's disabled */
  box-shadow: none; /* Remove shadow when disabled */
}


.nav-buttons {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 15px;
  width: 100%;
  max-width: 450px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 36, 66, 0.9); /* Match container background */
  box-sizing: border-box;
}

    .nav-buttons button {
      width: 50%;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #888793; /* Dark green for navigation */
      color: white;
      padding: 12px;
      border-radius: 0px;
    }

    .nav-buttons button i {
      font-size: 24px;
      margin-bottom: 5px;
    }

    .nav-buttons button.active {
      background-color: #315493; /* Even darker green when active */
    }

    h2 {
      font-size: 20px;
      color: white;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }


    .african-pattern {
      background-image: url('../../assets/images/icon.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 150px;
      width: 150px;
      border-radius: 50%;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Small icons (for TON) */
    .icon-ton {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      vertical-align: middle;
    }

    .smalltext {
      font-size: 10px;
      color: white;
      margin-top: 15px;
      text-align: center;
    }

.smalltext a {
  text-decoration: none;
  color: #cc7100;
}

tc-root button {
  box-sizing: border-box;
}

.input-group {
  margin: 15px 0;
}

#donationAmount {
  width: 200px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.feedback {
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
}

.feedback.success {
  background: #d4edda;
  color: #155724;
}

.feedback.error {
  background: #f8d7da;
  color: #721c24;
}

/* Added mobile-first media queries */
@media (max-width: 480px) {
  .container {
    width: 100%;
    border-radius: 0;
    min-height: 100vh;
    padding-bottom: 70px;
  }

  body {
    background-attachment: scroll; /* Better mobile performance */
  }

  button {
    width: 90%;
    font-size: 14px;
  }

  .nav-buttons {
    max-width: 100%;
    border-radius: 0;
  }
}