.wallet-icons {
    display: flex; /* Arrange icons horizontally */
    justify-content: center; /* Center the icons */
    gap: 20px; /* Add space between icons */
    margin-top: 20px; /* Add space above the icons */
}

.wallet-icons img {
    width: 60px; /* Adjust icon size */
    height: auto;
    border-radius: 6px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow */
}