/* =====================================================
   БЛОК ВЫВОДА СРЕДСТВ — withdrawal.css
   ===================================================== */

#withdrawal-block {
    min-height: 80px;
}

/* Не идентифицирован */
.withdrawal-not-identified {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    text-align: center;
}

.withdrawal-icon {
    font-size: 32px;
}

.withdrawal-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.withdrawal-subtitle {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.withdrawal-hint {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

.withdrawal-contact-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 24px;
    background: #019A44;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    box-shadow: 0 4px 12px rgba(1,154,68,.25);
}

.withdrawal-contact-btn:hover {
    background: #007231;
}

/* Активная заявка */
.withdrawal-pending {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.withdrawal-pending-icon {
    font-size: 30px;
}

.withdrawal-pending-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.withdrawal-pending-rows {
    width: 100%;
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    padding: 10px 14px;
}

.wd-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.wd-row:last-child {
    border-bottom: none;
}

.wd-row span:first-child {
    color: #666;
}

.withdrawal-cancel-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1.5px solid #e05454;
    color: #e05454;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.withdrawal-cancel-btn:hover {
    background: rgba(224,84,84,.08);
}

/* Форма вывода */
.withdrawal-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 2px;
}

.wd-balance-row {
    display: flex;
    gap: 8px;
}

.wd-balance-item {
    flex: 1;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    padding: 10px 10px;
    text-align: center;
}

.wd-balance-label {
    font-size: 10px;
    color: #777;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.wd-balance-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.wd-fee-info {
    font-size: 12px;
    color: #555;
    background: rgba(255,255,255,0.5);
    padding: 7px 12px;
    border-radius: 8px;
}

.wd-insufficient {
    font-size: 12px;
    color: #7a4f00;
    background: rgba(255,243,200,0.8);
    border: 1px solid rgba(240,200,80,.5);
    border-radius: 10px;
    padding: 9px 12px;
    line-height: 1.5;
}

.withdrawal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wd-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wd-input-wrap label {
    font-size: 11px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wd-input-wrap input,
.wd-input-wrap textarea {
    background: rgba(255,255,255,0.75) !important;
    border: 1.5px solid rgba(0,0,0,.1) !important;
    border-radius: 10px !important;
    color: #1a1a1a !important;
    font-size: 14px !important;
    transition: border-color .15s !important;
}

.wd-input-wrap input:focus,
.wd-input-wrap textarea:focus {
    border-color: #019A44 !important;
    background: rgba(255,255,255,0.95) !important;
    outline: none !important;
}

.wd-fee-preview {
    background: rgba(1,154,68,.08);
    border: 1px solid rgba(1,154,68,.2);
    border-radius: 10px;
    padding: 9px 12px;
}

.withdrawal-submit-btn {
    padding: 11px;
    background: #019A44;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, box-shadow .2s;
    width: 100%;
    box-shadow: 0 4px 12px rgba(1,154,68,.3);
}

.withdrawal-submit-btn:hover    { background: #007231; box-shadow: 0 6px 16px rgba(1,154,68,.35); }
.withdrawal-submit-btn:disabled { background: #aaa; box-shadow: none; cursor: not-allowed; }