/* Wallet pass container */
.wallet-pass-container {
    display: block;
    text-align: center;
    margin: 8px 0
}

.wallet-pass-container.full-width {
    width: 100%
}

.wallet-wrapper {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, basis */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Apple Wallet badges */
.apple-wallet-badge {
    display: inline-block;
    height: 50px;
    margin: 4px
}

.apple-wallet-badge img {
    height: 100%;
    width: auto;
    display: block;
    max-width: none;
    pointer-events: none
}

.apple-wallet-badge.full-width {
    width: 100%;
    height: auto !important;
    display: block;
    text-align: center
}

.apple-wallet-badge.full-width img {
    width: 100%;
    height: auto;
    max-width: 400px
}

.apple-wallet-badge-fallback {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 8px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.apple-wallet-badge-fallback:hover {
    background: #333;
    color: #fff;
    text-decoration: none
}

/* Google Wallet badges */
.google-wallet-badge {
    display: inline-block;
    height: 50px;
    margin: 4px
}

.google-wallet-badge img {
    height: 100%;
    width: auto;
    display: block;
    max-width: none;
    pointer-events: none
}

.google-wallet-badge.full-width {
    width: 100%;
    height: auto !important;
    display: block;
    text-align: center
}

.google-wallet-badge.full-width img {
    width: 100%;
    height: auto;
    max-width: 400px
}

.google-wallet-badge-fallback {
    display: inline-flex;
    align-items: center;
    background: #1a73e8;
    color: #fff;
    border: 1px solid #1a73e8;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 8px;
    font-weight: 500;
    font-family: "Google Sans", Roboto, sans-serif;
    margin: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.google-wallet-badge-fallback:hover {
    background: #1557b0;
    color: #fff;
    text-decoration: none;
    border-color: #1557b0
}

/* QR codes for both wallets */
.apple-wallet-qr,
.google-wallet-qr {
    display: block;
    text-align: center;
    margin-top: 6px
}

.apple-wallet-qr img,
.google-wallet-qr img {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    max-width: 100%
}

.apple-wallet-qr-label {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif
}

.google-wallet-qr-label {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-family: "Google Sans", Roboto, sans-serif
}

/* Responsive adjustments */
@media (max-width: 480px) {

    .wallet-pass-container .apple-wallet-badge-fallback,
    .wallet-pass-container .google-wallet-badge-fallback {
        display: block;
        margin: 8px auto;
        max-width: 280px;
        text-align: center
    }
}
.wallet-pass-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}