.nw-modal-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
}
.nw-modal-wrapper .nw-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.nw-modal-wrapper .nw-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    padding: 30px;
}
.nw-modal-wrapper .nw-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #666;
}
.nw-modal-wrapper .nw-modal-close:hover {
    color: #000;
}
.nw-modal-wrapper .nw-retract-form-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nw-modal-wrapper .nw-retract-form-step label,
.nw-modal-wrapper .nw-bank-account label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}
.nw-modal-wrapper .nw-retract-form-step input[type="text"],
.nw-modal-wrapper .nw-retract-form-step input[type="email"],
.nw-modal-wrapper .nw-bank-account input[type="text"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    width: 100%;
    box-sizing: border-box;
}
.nw-modal-wrapper .nw-submit-btn,
.nw-modal-wrapper .nw-btn-primary {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}
.nw-modal-wrapper .nw-submit-btn:hover,
.nw-modal-wrapper .nw-btn-primary:hover {
    background: #135e96;
}
.nw-modal-wrapper .nw-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.nw-modal-wrapper .nw-item-row label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}
.nw-modal-wrapper .nw-items-list {
    margin-bottom: 20px;
}
.nw-modal-wrapper .nw-bank-account {
    margin-bottom: 20px;
}
.nw-modal-wrapper .nw-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.nw-modal-wrapper .nw-alert-error {
    background: #f8d7da;
    color: #842029;
}
.nw-modal-wrapper .nw-alert-success {
    background: #d1e7dd;
    color: #0f5132;
}

/* Responsive adjustments (FE-04) */
@media (max-width: 480px) {
    .nw-modal-wrapper .nw-modal-content {
        padding: 20px 15px;
        width: 95%;
        max-height: 95vh;
    }
    .nw-modal-wrapper .nw-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    .nw-modal-wrapper .nw-item-row label {
        align-items: flex-start;
    }
    .nw-modal-wrapper .nw-qty-select {
        width: 100%;
        padding: 8px;
    }
}

