.income-card {
    margin: 20px;
  }
  
  .method-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    transition: background-color 0.3s;
  }
  
  .method-card:hover {
    background-color: #f0f0f0;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
    background-color: #ddd; /* Placeholder color, replace with actual icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .method-name {
    flex-grow: 1;
    margin-left: 20px;
    font-size: 16px;
    font-weight: 500;
  }
  
  /* Card styles */
  .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .deposit-method-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .deposit-card {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }

  .deposit-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .deposit-card .card-body {
    padding: 20px;
  }

  .deposit-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
  }

  .method-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .method-item {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .method-item svg {
    font-size: 24px;
    margin-right: 15px;
    font-weight: bold;
  }

  .chevron-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #888;
  }

  .back-button {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .back-button:hover {
    background-color: #e0e0e0;
  }

  .crypto-selection {
    max-width: 600px;
    margin: 0 auto;
  }

  .crypto-card {
    cursor: pointer;
    transition: transform 0.2s;
  }

  .crypto-card:hover {
    transform: translateY(-2px);
  }

  .crypto-logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .crypto-details {
    max-width: 500px;
    margin: 0 auto;
  }

  .wallet-address {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
  }

  .qr-code {
    display: block;
    max-width: 200px;
    margin: 20px auto;
  }

  .instructions {
    white-space: pre-wrap;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9em;
  }

  .amount-input {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .submit-button {
    width: 100%;
    max-width: 300px;
  }
