.moreaffiliate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.moreaffiliate-modal-content {
    background: #fff;
    width: 400px;
    max-width: 90%;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.moreaffiliate-modal-content h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.moreaffiliate-modal-content p {
    margin: 10px 0;
}

.moreaffiliate-modal-content label {
    margin: 10px 0;
    display: block;
}

.moreaffiliate-modal-content textarea {
    width: 100%;
    height: 80px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.moreaffiliate-modal-content button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.moreaffiliate-modal-content button[type="submit"] {
    background: #0073aa;
    color: #fff;
}

.moreaffiliate-modal-content button[type="submit"]:hover {
    background: #005d87;
}

.moreaffiliate-modal-content .skip {
    background: #f1f1f1;
    color: #333;
    margin-left: 10px;
}

.moreaffiliate-modal-content .skip:hover {
    background: #e0e0e0;
}