.withdrawal-proof-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.withdrawal-proof-toast.show {
    top: 20px;
}

.withdrawal-proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.withdrawal-proof-content {
    display: flex;
    flex-direction: column;
}

.withdrawal-proof-user {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f8fafc;
}

.withdrawal-proof-detail {
    font-size: 0.75rem;
    color: #94a3b8;
}

.withdrawal-proof-amount {
    color: #10b981;
    font-weight: 700;
}

.withdrawal-proof-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-left: 4px;
}

@media (max-width: 640px) {
    .withdrawal-proof-toast {
        width: 90%;
        padding: 10px 14px;
    }
}