.stripe-express-welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stripe-express-welcome-popup {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 860px;
    width: 90%;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stripe-express-welcome-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.stripe-express-welcome-popup h2 {
    margin: 0 0 20px;
    color: #23282d;
}

.stripe-express-plugins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stripe-express-plugin-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.stripe-express-plugin-item h3 {
    margin: 0 0 10px;
    color: #23282d;
}

.stripe-express-plugin-item p {
    margin: 0 0 15px;
    color: #646970;
}

.stripe-express-plugin-item .button {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 3px;
}