#test {
    padding: 4rem;
    width: 100%;
    overflow-x: auto;
    /* display: none; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: black;

    h1, h2, h3, h4, h5, h6 {
        color: #ffffff;
        margin: 0;
        margin-bottom: 1.5rem;
    }

    #edd_sl_license_keys {
        border: 0;
    }
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    > * {
        flex-grow: 1;
        
    }
}

.important-notice {
    background: #0f39ad;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}



/* License Item Card */
.edd_sl_license_item {
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 15px;
    background: #191919;
    color: #fff;
    max-width: 1200px;
}

/* License Fields */
.edd_sl_license_item .license-field {
    margin-bottom: 15px;
}

.edd_sl_license_item .license-field strong {
    display: block;
    margin-bottom: 5px;
}

.edd_sl_license_item .license-field .product-name {
    font-size: 16px;
}

/* License Key Input */
.edd_sl_license_key {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: monospace;
}

/* License Options Section */
.license-options-section {
    margin-top: 20px;
    padding: 15px;
    background: #363535;
    border-radius: 3px;
}

.license-options-section strong {
    display: block;
    margin-bottom: 10px;
}

.license-options-grid {
    display: flex;
    gap: 10px;

    > * {
        flex-grow: 1;
        max-width: 300px;
    }
}

/* Price Option Item */
.price-option-item {
    padding: 10px;
    background: #000000;
    color: #ffffff;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
}

.price-option-item.current-license {
    background: #087d14;
    position: relative;
}




.current-license-badge {
    padding: 2px 8px;
    background: #0fff17;
    color: black;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 5px;
}

/* Migration Section */
.migration-section {
    margin-top: 20px;
    padding: 15px;
    background: #0f39ad;
    border-radius: 3px;
}



.migrate-license-btn-simple {
    padding: 10px 20px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 1000px;
}


.migration-message {
    margin-top: 10px;
    display: none;
}


#product-info {
    display: flex;
    gap: 1rem;

    > * {
        border: 1px solid red;
        flex-grow: 1;
        
    }
}