.app-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 20px 0;
    background-color: #f8f8f8;
}

.app-button img {
    max-width: 100%; /* Ensure the image scales within its container */
    height: auto; /* Maintain aspect ratio */
    width: 150px; /* Set a base width for the buttons */
}

.app-button {
    display: inline-block; /* Ensure they are aligned properly */
    margin: 10px; /* Add spacing around the buttons */
    text-align: center; /* Center align the content inside */
}

@media (max-width: 768px) {
    .app-button img {
        width: 120px; /* Smaller size for tablets */
    }
}

@media (max-width: 480px) {
    .app-button img {
        width: 120px; /* Even smaller size for mobile phones */
    }
}

@media (max-width: 768px) {
    .qrcodedolar {
        display: none !important;
    }
}