.dengi-header {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.btn-back {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.user-header-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-grow: 1;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info-compact {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.user-info-compact span:first-child {
    font-weight: 600;
    font-size: 1rem;
}

.user-info-compact span:last-child {
    font-size: 0.9rem;
    color: #555;
}

.wallet-section-dengi,
.referrals-section,
.transactions-section-dengi {
    margin-bottom: 20px;
}

.referrals-section h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deposit-card {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 0;
}

.network-info {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
    align-items: center;
}

.network-badge,
.currency {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
}

.network-badge {
    background: #e3f2fd;
    border-color: #90caf9;
    color: #1976d2;
}

.currency {
    background: #e8f5e8;
    border-color: #81c784;
    color: #388e3c;
}

.referrals-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
}

.referrals-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    padding: 11px 25px 10px 10px;
    background: linear-gradient(135deg, #002eff 0%, #764ba2 100%);
    border-radius: 8px;
    border: 1px solid #ddd; 
    font-size: 1rem;
    color: white; 
}

 

.referrals-earn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    padding: 12px;
    background: linear-gradient(135deg, #002eff 0%, #764ba2 100%);
    border-radius: 8px;
    border: 1px solid #ddd; 
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.btn-copy {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    padding: 5px 7px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
    font-size: 0.8rem;
    width: auto;
    border: solid 1px;
}



.referrals-info {
    position: relative;
    background: linear-gradient(135deg, #002eff 0%, #764ba2 100%);
    border-radius: 8px;
    border: 1px solid #ddd; 
    padding: 12px;
    margin-top: 10px;
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(253, 203, 110, 0.2);
}
 
@media (max-width: 768px) {
    .referrals-link span {
        word-break: break-all;
        font-size: 0.8rem;
    } 
}

.notification.pending {
    background: #ff9800;
    color: white;
    max-width: 400px;
    padding: 12px;
}
 