.omnipay-payment-container {
    /* border: 1px dashed #000000; */
    border: none;
    background: #fff;
    padding: 10px;
    margin: 10px 0;
}

.omnipay-payment-title {
    font-size: 1.5rem;
    color: #f05327;
    text-align: center;
    margin-bottom: 1rem;
}

.qr-code-container {
    text-align: center;
    margin: 20px 0;
}

.qr-code-container img {
    max-width: 200px;
    height: auto;
}

.generate-qr {
    background-color: #f5f4f4;
    padding: 1.5rem .5rem;
    max-width: 100%;
    text-align: center;
}

.generate-qr__title {
    font-weight: 900;
    font-size: 1.5rem;
}

.generate-qr__sub {
    font-size: 1.25rem;
}

.download-qr a {
    font-family: inherit;
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
    /* background: var(--wp--preset--color--primary); */
    background: #352824;
    color: var(--wp--preset--color--white);
    line-height: 1;
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    -webkit-text-decoration: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.download-qr a:hover {
    background: #d04723;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .qr-code-container img {
        max-width: 150px;
    }

    .generate-qr__title {
        font-size: 1.3rem;
    }

    .generate-qr__sub {
        font-size: 1rem;
    }

    .download-qr a {
        font-size: 1rem;
    }
}