/* Stripe payment related styles */

/* Payment success message */
.payment-success-message {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease;
    position: relative;
}

/* Loading state for the upgrade button */
.pricing-button.featured[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Stripe checkout button */
.stripe-checkout-button {
    background-color: #6772e5;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 15px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.stripe-checkout-button:hover {
    background-color: #5469d4;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.stripe-checkout-button:focus {
    outline: none;
}

.stripe-checkout-button:active {
    transform: translateY(1px);
}

/* Disabled button styles */
.pricing-button.featured.disabled {
    opacity: 0.8;
    cursor: not-allowed;
    background-color: #4CAF50 !important;
    color: white !important;
    border: none;
}

.pricing-button.featured.disabled:hover {
    background-color: #4CAF50 !important;
    color: white !important;
    transform: none;
}
