/* Add your CSS styles here for improved UI and responsiveness */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
}

.wallet-buttons {
    text-align: center;
    margin: 20px 0;
}

.account-details {
    text-align: center;
    margin: 20px 0;
}

h2 {
    margin-top: 20px;
}

.input-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.input {
    flex: 1;
    padding: 10px;
    margin-right: 10px;
}

.button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
}

.chart-container {
    margin: 20px 0;
    text-align: center;
}

#usdEquivalent {
    text-align: center;
    margin: 20px 0;
}

/* Add styles for the price comparison section */
#best-price-info {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
  }
  
  #exchange-prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .price-card {
    border: 1px solid #e1e1e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    transition: transform 0.2s ease-in-out;
  }
  
  .price-card:hover {
    transform: scale(1.03);
    cursor: pointer;
  }
  
  /* Styling for individual price cards */
  .price-card p {
    font-size: 18px;
  }
  
/* Add a hovering effect to price cards */
.price-card:hover {
    background-color: #005bea;
    color: #fff;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
  }
  
