.withdrawal-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.withdrawal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.withdrawal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.withdrawal-card.pending {
    border-color: #FFA500;
}

.withdrawal-card.approved {
    border-color: #00C8FF;
}

.withdrawal-card.processing {
    border-color: #9370DB;
}

.withdrawal-card.completed {
    border-color: #00FF88;
}

.withdrawal-card.rejected {
    border-color: #FF4444;
}

.withdrawal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.withdrawal-amount {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.withdrawal-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.withdrawal-status.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
}

.withdrawal-status.approved {
    background: rgba(0, 200, 255, 0.2);
    color: #00C8FF;
}

.withdrawal-status.processing {
    background: rgba(147, 112, 219, 0.2);
    color: #9370DB;
}

.withdrawal-status.completed {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.withdrawal-status.rejected {
    background: rgba(255, 68, 68, 0.2);
    color: #FF4444;
}

.withdrawal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.withdrawal-detail .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.withdrawal-detail .value {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.withdrawal-pix-key {
    grid-column: 1 / -1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    word-break: break-all;
}

.rejection-reason {
    grid-column: 1 / -1;
    padding: 12px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 6px;
    border-left: 3px solid #FF4444;
    color: #FF4444;
    font-size: 13px;
}


.screen-sub-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 20px;
}