.rdc-withdrawal .wrapper-withdrawal {
    position: relative;
}

.rdc-withdrawal .withdrawal-section {
    width: 100%;
}

.rdc-withdrawal .withdrawal-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.rdc-withdrawal .withdrawal-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.rdc-withdrawal .withdrawal-intro strong {
    color: #222;
}

.rdc-withdrawal .withdrawal-info-box {
    background: #f0f7ff;
    border-left: 4px solid #2b6cb0;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 0 4px 4px 0;
}

.rdc-withdrawal .withdrawal-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.rdc-withdrawal .withdrawal-info-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.rdc-withdrawal .withdrawal-info-content ul {
    padding-left: 20px;
    margin: 8px 0;
}

.rdc-withdrawal .withdrawal-info-content li {
    margin-bottom: 4px;
}

.rdc-withdrawal .withdrawal-info-note {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.rdc-withdrawal .withdrawal-howto-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.rdc-withdrawal .withdrawal-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rdc-withdrawal .withdrawal-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.rdc-withdrawal .withdrawal-steps li:last-child {
    border-bottom: none;
}

.rdc-withdrawal .withdrawal-steps li strong {
    color: #2b6cb0;
    min-width: 200px;
    display: inline-block;
}

.rdc-withdrawal .withdrawal-steps li span {
    color: #666;
}

.rdc-withdrawal .wrapper-form textarea {
    min-height: 80px;
    resize: vertical;
    width: 100%;
}

.rdc-withdrawal .withdrawal-form-submit {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 10px 0 0 0;
}

.rdc-withdrawal .withdrawal-form-submit.column {
    padding-left: 0;
    padding-right: 0;
}

.withdrawal-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.withdrawal-modal {
    background: #fff;
    border-radius: var(--button-border-radius);
    padding: 30px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}


.withdrawal-modal-body p {
    margin-bottom: 8px;
}

.withdrawal-modal-actions {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 10px;
}

.withdrawal-modal-cancel {
    padding: 10px 24px;
    background: #e2e8f0;
    color: #4a5568;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.withdrawal-modal-cancel:hover {
    background: #cbd5e0;
}

.withdrawal-modal-confirm {
    padding: 10px 24px;
    background: #2b6cb0;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.withdrawal-modal-confirm:hover {
    background: #1a4f8a;
}

@media (max-width: 767px) {
    .rdc-withdrawal .withdrawal-steps li {
        display: block;
    }
    .rdc-withdrawal .withdrawal-steps li strong {
        display: block;
        margin-bottom: 4px;
    }
    .withdrawal-modal-actions {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .withdrawal-modal-actions button {
        width: 100%;
    }
}
