.saldo-usuario {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.saldo-usuario a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out;
}

.saldo-usuario a:hover {
    color: #ff6b6b;
}

