h2 {
    text-align: center;
    font-size: 30px !important;
    margin-bottom: 0px !important;
}

.payment-checkout-form-wrapper {
    width: fit-content;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.payment-checkout-form, .payment-confirmation-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 750px;
    padding: 30px 20px 30px 20px;
    border: 1px solid lightgray;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.payment-confirmation-form {
    text-align: center;
    display: none;
}

.payment-checkout-label {
    font-size: 14px;
    line-height: 2;
}

.payment-checkout-account {
    margin-top: 10px;
    margin-bottom: 10px;
}

.payment-checkout-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-checkout-details input {
    background-color: white;
    color: black;
    border: 1px solid gray;
    border-radius: 5px;
    width: 100%;
    line-height: 1;
}

.payment-checkout-details input:focus {
    outline-color: gray;
    border: 1px solid gray;
}

.payment-checkout-logout {
    font-size: 14px;
    font-style: italic;
    line-height: 2;
    text-align: right;
}

.payment-checkout-plans {
    margin-bottom: 10px;
}

.payment-price {
    display: none;
}

.payment-price.selected {
    display: flex;
}

.payment-checkout-change-plan {
    font-size: 14px;
    font-style: italic;
    line-height: 2;
    text-align: right;
}

.payment-checkout-methods {
    margin-bottom: 10px;
}

.paypal-buy-button {
    margin-top: 5px;
}

.lemon-squeezy-buy-button {
    text-align: center;
    display: block;
    width: 100%;
    padding: 8px 10px;
    margin-top: -10px;
    margin-bottom: 25px;
    background-color: #4a28ad;
    color: white;
    font-size: 18px;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 5px;
    line-height: 1.5;
}

.lemon-squeezy-buy-button div {
    font-size: 12px;
    font-style: italic;
}

.lemon-squeezy-buy-button:hover, .lemon-squeezy-buy-button:focus {
    color: white;
    background-color: #5635b9;
}

.payment-checkout-note {
    font-size: 14px;
    font-style: italic;
    line-height: 2;
    text-align: center;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    flex-wrap: wrap;
    flex-direction: column;
    display: none;
}

.spinner-overlay strong {
    color: white;
    width: 100%;
    margin-bottom: 20px;
    font-size: 25px;
}

.spinner {
    display: block;
    width: 80px;
    height: 80px;
    border: 8px solid lightgray;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    .lemon-squeezy-buy-button {
        font-size: 16px;
    }

    .lemon-squeezy-buy-button div {
        font-size: 10px;
    }
}

@media screen and (max-width: 500px) {
    .lemon-squeezy-buy-button {
        font-size: 13px;
    }

    .lemon-squeezy-buy-button div {
        font-size: 10px;
    }
}