/* Stripe Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 19px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 90%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

#stripe-card-element {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none;
}

.stripe-btn {
    background: #0b63e5;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    /* width: 100%; */
    margin-top: 20px;
}

.stripe-btn:hover {
    background: #0952c7;
}

.stripe-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#stripe-payment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#stripe-payment-form input[type="number"],
#stripe-payment-form input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#stripe-card-errors {
    margin-top: 10px;
    font-size: 14px;
}

/* Button styling for the stripe payment button in subscription popup */
.stripe-payment-button {
    background: #635bff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

.stripe-payment-button:hover {
    background: #5a54e6;
}

.stripe-payment-button i {
    margin-right: 5px;
}
